diff options
author | 2004-12-22 15:17:16 +0000 | |
---|---|---|
committer | 2004-12-22 15:17:16 +0000 | |
commit | b1ec557f3141a5f2507d2c2495fe54528c37e6a9 (patch) | |
tree | a2207409e935824a59b4dafa700e83db37608cef /dev-libs/log4cxx/files | |
parent | old (Manifest recommit) (diff) | |
download | gentoo-2-b1ec557f3141a5f2507d2c2495fe54528c37e6a9.tar.gz gentoo-2-b1ec557f3141a5f2507d2c2495fe54528c37e6a9.tar.bz2 gentoo-2-b1ec557f3141a5f2507d2c2495fe54528c37e6a9.zip |
Version bump; closes bugs 75260 and 72021. Also, added support for USE flags doc, unicode, odbc, and smtp. Updated metadata.xml.
Diffstat (limited to 'dev-libs/log4cxx/files')
-rw-r--r-- | dev-libs/log4cxx/files/digest-log4cxx-0.9.7 | 1 | ||||
-rw-r--r-- | dev-libs/log4cxx/files/log4cxx-0.9.7-gentoo.diff | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dev-libs/log4cxx/files/digest-log4cxx-0.9.7 b/dev-libs/log4cxx/files/digest-log4cxx-0.9.7 new file mode 100644 index 000000000000..aaac6045c159 --- /dev/null +++ b/dev-libs/log4cxx/files/digest-log4cxx-0.9.7 @@ -0,0 +1 @@ +MD5 fd09abc90b8c0c8af1d5146a75590792 log4cxx-0.9.7.tar.gz 256449 diff --git a/dev-libs/log4cxx/files/log4cxx-0.9.7-gentoo.diff b/dev-libs/log4cxx/files/log4cxx-0.9.7-gentoo.diff new file mode 100644 index 000000000000..ada50c4f84cd --- /dev/null +++ b/dev-libs/log4cxx/files/log4cxx-0.9.7-gentoo.diff @@ -0,0 +1,21 @@ +diff -urN log4cxx-0.9.7.orig/src/smtpappender.cpp log4cxx-0.9.7/src/smtpappender.cpp +--- log4cxx-0.9.7.orig/src/smtpappender.cpp 2004-12-22 09:26:21.000000000 -0500 ++++ log4cxx-0.9.7/src/smtpappender.cpp 2004-12-22 09:59:25.247244129 -0500 +@@ -134,7 +134,7 @@ + for (i = recipients.begin(); i != recipients.end(); i++) + { + if (::libsmtp_add_recipient(LIBSMTP_REC_TO, +- (TCHAR *)T2A(i->c_str()), ++ T2A((TCHAR *)i->c_str()), + (libsmtp_session_struct *)session) != 0) + { + LogLog::error(_T("Could not add recipient ")+*i+_T(".")); +@@ -316,6 +316,8 @@ + */ + void SMTPAppender::sendBuffer() + { ++ USES_CONVERSION; ++ + // Note: this code already owns the monitor for this + // appender. This frees us from needing to synchronize on 'cb'. + try |