You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ca...@apache.org on 2008/02/13 02:42:41 UTC

svn commit: r627215 - in /logging/log4cxx/trunk/src: examples/cpp/delayedloop.cpp main/cpp/bytearrayoutputstream.cpp main/cpp/nameabbreviator.cpp test/cpp/logunit.cpp

Author: carnold
Date: Tue Feb 12 17:42:40 2008
New Revision: 627215

URL: http://svn.apache.org/viewvc?rev=627215&view=rev
Log:
LOGCXX-237: gcc 4.3 header dependency cleanup

Modified:
    logging/log4cxx/trunk/src/examples/cpp/delayedloop.cpp
    logging/log4cxx/trunk/src/main/cpp/bytearrayoutputstream.cpp
    logging/log4cxx/trunk/src/main/cpp/nameabbreviator.cpp
    logging/log4cxx/trunk/src/test/cpp/logunit.cpp

Modified: logging/log4cxx/trunk/src/examples/cpp/delayedloop.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/examples/cpp/delayedloop.cpp?rev=627215&r1=627214&r2=627215&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/examples/cpp/delayedloop.cpp (original)
+++ logging/log4cxx/trunk/src/examples/cpp/delayedloop.cpp Tue Feb 12 17:42:40 2008
@@ -23,6 +23,7 @@
 #include <iostream>
 #include <log4cxx/stream.h>
 #include <exception>
+#include <stdlib.h>
 
 using namespace log4cxx;
 using namespace log4cxx::helpers;

Modified: logging/log4cxx/trunk/src/main/cpp/bytearrayoutputstream.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/bytearrayoutputstream.cpp?rev=627215&r1=627214&r2=627215&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/bytearrayoutputstream.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/bytearrayoutputstream.cpp Tue Feb 12 17:42:40 2008
@@ -19,6 +19,7 @@
 #include <log4cxx/helpers/bytearrayoutputstream.h>
 #include <log4cxx/helpers/exception.h>
 #include <log4cxx/helpers/bytebuffer.h>
+#include <string.h>
 
 using namespace log4cxx;
 using namespace log4cxx::helpers;

Modified: logging/log4cxx/trunk/src/main/cpp/nameabbreviator.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/nameabbreviator.cpp?rev=627215&r1=627214&r2=627215&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/nameabbreviator.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/nameabbreviator.cpp Tue Feb 12 17:42:40 2008
@@ -19,6 +19,7 @@
 #include <log4cxx/helpers/exception.h>
 #include <log4cxx/helpers/stringhelper.h>
 #include <vector>
+#include <limits.h>
 
 using namespace log4cxx;
 using namespace log4cxx::pattern;

Modified: logging/log4cxx/trunk/src/test/cpp/logunit.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/test/cpp/logunit.cpp?rev=627215&r1=627214&r2=627215&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/test/cpp/logunit.cpp (original)
+++ logging/log4cxx/trunk/src/test/cpp/logunit.cpp Tue Feb 12 17:42:40 2008
@@ -21,6 +21,7 @@
 #include "logunit.h"
 
 #include <apr_general.h>
+#include <algorithm>
 
 void initialize() {
     apr_initialize();