Release 3-2-4 with tag: REL_mrw-c++-3-2-4

This commit is contained in:
Marc Wäckerlin
2007-08-20 16:09:31 +00:00
parent badbe2d1fc
commit 92d9a56eea
8 changed files with 16 additions and 7 deletions

View File

@@ -1,3 +1,6 @@
* Mon Aug 20 2007 Marc Waeckerlin - mrw-c++-3.2.5 (mrw)
- New checkinstall.sh, cause checkinstall does not work otherwise
- "#if _REENTRANT" needs "defined(...)"
* Tue Aug 16 2007 Marc Waeckerlin - mrw-c++-3.2.4 (mrw) * Tue Aug 16 2007 Marc Waeckerlin - mrw-c++-3.2.4 (mrw)
- Changed specfiles to eilminate build problems - Changed specfiles to eilminate build problems
* Sun Aug 5 2007 Marc Waeckerlin - mrw-c++-3.2.3 (mrw) * Sun Aug 5 2007 Marc Waeckerlin - mrw-c++-3.2.3 (mrw)

View File

@@ -11,7 +11,7 @@
SUBDIRS = mrw SUBDIRS = mrw
EXTRA_DIST = bootstrap.sh EXTRA_DIST = bootstrap.sh checkinstall.sh
nobase_include_HEADERS = mrw/arg.hpp mrw/list.hpp \ nobase_include_HEADERS = mrw/arg.hpp mrw/list.hpp \
mrw/unistd.hpp \ mrw/unistd.hpp \

View File

@@ -23,7 +23,8 @@
#include <mrw/stacktrace.hpp> #include <mrw/stacktrace.hpp>
#include <log4cxx/logger.h> #include <log4cxx/logger.h>
#if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) && _REENTRANT && !_MT #if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) \
&& defined(_REENTRANT) && !defined(_MT)
#define _MT #define _MT
#endif #endif

View File

@@ -21,7 +21,8 @@
#include <iostream> #include <iostream>
#include <iomanip> #include <iomanip>
#if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) && _REENTRANT && !_MT #if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) \
&& defined(_REENTRANT) && !defined(_MT)
#define _MT #define _MT
#endif #endif

View File

@@ -27,7 +27,8 @@
#include <log4cxx/helpers/properties.h> #include <log4cxx/helpers/properties.h>
#include <fstream> #include <fstream>
#if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) && _REENTRANT && !_MT #if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) \
&& defined(_REENTRANT) && !defined(_MT)
#define _MT #define _MT
#endif #endif

View File

@@ -35,7 +35,8 @@
#include <mrw/stacktrace.hpp> #include <mrw/stacktrace.hpp>
#include <map> #include <map>
#if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) && _REENTRANT && !_MT #if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) \
&& defined(_REENTRANT) && !defined(_MT)
#define _MT #define _MT
#endif #endif

View File

@@ -53,7 +53,8 @@
} }
#endif #endif
#if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) && _REENTRANT && !_MT #if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) \
&& defined(_REENTRANT) && !defined(_MT)
#define _MT #define _MT
#endif #endif

View File

@@ -20,7 +20,8 @@
#include <sys/mman.h> #include <sys/mman.h>
#include <bfd.h> #include <bfd.h>
#if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) && _REENTRANT && !_MT #if (__GNUC__==3 && __GNUC_MINOR__<4 || __GNUC__<3) \
&& defined(_REENTRANT) && !defined(_MT)
#define _MT #define _MT
#endif #endif
#ifdef _MT #ifdef _MT