Author: joseph
Date: Wed Jan 8 00:48:19 2014
New Revision: 1556413
URL: http://svn.apache.org/r1556413
Log:
LOG4CXX-417: atoi undefined on macos 10.9
Modified:
incubator/log4cxx/trunk/src/main/cpp/stringhelper.cpp
Modified: incubator/log4cxx/trunk/src/main/cpp/stringhelper.cpp
URL:
http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/cpp/stringhelper.cpp?rev=1556413&r1=1556412&r2=1556413&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/main/cpp/stringhelper.cpp (original)
+++ incubator/log4cxx/trunk/src/main/cpp/stringhelper.cpp Wed Jan 8 00:48:19
2014
@@ -30,6 +30,10 @@
#include <cctype>
#include <iterator>
#include <apr.h>
+//LOG4CXX-417: need stdlib.h for atoi on some systems.
+#ifdef APR_HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
using namespace log4cxx;