diff options
author | 2007-03-15 22:48:29 +0000 | |
---|---|---|
committer | 2007-03-15 22:48:29 +0000 | |
commit | e1b87f32d1113a228fc68686a2ff2d0c211e1e16 (patch) | |
tree | 38185b8ec2b360ef769fd9d0ea1c2f7c979c435a /dev-libs/log4cxx/files | |
parent | Version bump, security bug #163781. (diff) | |
download | historical-e1b87f32d1113a228fc68686a2ff2d0c211e1e16.tar.gz historical-e1b87f32d1113a228fc68686a2ff2d0c211e1e16.tar.bz2 historical-e1b87f32d1113a228fc68686a2ff2d0c211e1e16.zip |
Added patch to fix compilation problems for projects depending on log4cxx (bug #162523, thanks to Pedro). Dropped old versions.
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'dev-libs/log4cxx/files')
-rw-r--r-- | dev-libs/log4cxx/files/digest-log4cxx-0.9.5 | 3 | ||||
-rw-r--r-- | dev-libs/log4cxx/files/digest-log4cxx-0.9.7-r4 (renamed from dev-libs/log4cxx/files/digest-log4cxx-0.9.7-r2) | 0 | ||||
-rw-r--r-- | dev-libs/log4cxx/files/log4cxx-0.9.5-fix-errno.diff | 24 | ||||
-rw-r--r-- | dev-libs/log4cxx/files/log4cxx-0.9.7-tchar.patch | 12 |
4 files changed, 12 insertions, 27 deletions
diff --git a/dev-libs/log4cxx/files/digest-log4cxx-0.9.5 b/dev-libs/log4cxx/files/digest-log4cxx-0.9.5 deleted file mode 100644 index 6e042c691004..000000000000 --- a/dev-libs/log4cxx/files/digest-log4cxx-0.9.5 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 dd1cc7a974d27620a7f2a1e886bf1757 log4cxx-0.9.5.tar.gz 232685 -RMD160 8c41aa584be1c019c71a8be8a14624cbc149409a log4cxx-0.9.5.tar.gz 232685 -SHA256 8485ec4423e24641334df3cf45e8cb5bf55fe05d3423ecb83991f404432c2db5 log4cxx-0.9.5.tar.gz 232685 diff --git a/dev-libs/log4cxx/files/digest-log4cxx-0.9.7-r2 b/dev-libs/log4cxx/files/digest-log4cxx-0.9.7-r4 index 4f09145279a2..4f09145279a2 100644 --- a/dev-libs/log4cxx/files/digest-log4cxx-0.9.7-r2 +++ b/dev-libs/log4cxx/files/digest-log4cxx-0.9.7-r4 diff --git a/dev-libs/log4cxx/files/log4cxx-0.9.5-fix-errno.diff b/dev-libs/log4cxx/files/log4cxx-0.9.5-fix-errno.diff deleted file mode 100644 index d157ae369747..000000000000 --- a/dev-libs/log4cxx/files/log4cxx-0.9.5-fix-errno.diff +++ /dev/null @@ -1,24 +0,0 @@ ---- src/filewatchdog.cpp.orig 2004-08-07 21:36:34.987676584 -0500 -+++ src/filewatchdog.cpp 2004-08-07 21:36:41.562677032 -0500 -@@ -17,10 +17,7 @@ - #include <log4cxx/helpers/filewatchdog.h> - #include <log4cxx/helpers/loglog.h> - #include <sys/stat.h> -- --#ifdef WIN32 --#include <errno.h> -+#include <cerrno> --#endif - - using namespace log4cxx; - using namespace log4cxx::helpers; ---- src/socketimpl.cpp.orig 2004-08-07 22:01:02.577569008 -0500 -+++ src/socketimpl.cpp 2004-08-07 22:01:23.868332320 -0500 -@@ -15,6 +15,7 @@ - ***************************************************************************/ - - #include <log4cxx/config.h> -+#include <cerrno> - - #ifdef WIN32 - #include <windows.h> diff --git a/dev-libs/log4cxx/files/log4cxx-0.9.7-tchar.patch b/dev-libs/log4cxx/files/log4cxx-0.9.7-tchar.patch new file mode 100644 index 000000000000..a3ba40fc864a --- /dev/null +++ b/dev-libs/log4cxx/files/log4cxx-0.9.7-tchar.patch @@ -0,0 +1,12 @@ +--- log4cxx-0.9.7.orig/include/log4cxx/helpers/tchar.h 2004-05-10 14:54:50.000000000 +0200 ++++ log4cxx-0.9.7/include/log4cxx/helpers/tchar.h 2007-01-17 12:46:44.000000000 +0100 +@@ -142,7 +142,9 @@ + #define _T(x) x + #endif + ++#ifndef TCHAR + typedef char TCHAR; ++#endif + #define totupper toupper + #define totlower tolower + #define tcout std::cout |