Hi, I have a patch for the autoconf.build-system. The include-directory log4cxx/spi/location was missing. The patch also disables inernal debugging as it should be (as it was before curts last checkin).
Tommi
? log.log ? log4j.properties ? examples/log.log ? include/log4cxx/spi/location/Makefile.am ? include/log4cxx/spi/location/Makefile.in ? src/.kdbgrc.propertyconfigurator.cpp ? tests/src/db/Makefile.in ? tests/src/nt/Makefile.in Index: configure.in =================================================================== RCS file: /home/cvspublic/logging-log4cxx/configure.in,v retrieving revision 1.45 diff -u -r1.45 configure.in --- configure.in 16 Dec 2004 00:21:46 -0000 1.45 +++ configure.in 18 Dec 2004 20:37:50 -0000 @@ -376,6 +376,7 @@ include/log4cxx/net/Makefile include/log4cxx/nt/Makefile include/log4cxx/spi/Makefile +include/log4cxx/spi/location/Makefile include/log4cxx/varia/Makefile include/log4cxx/xml/Makefile include/log4cxx/config/Makefile Index: include/log4cxx/spi/Makefile.am =================================================================== RCS file: /home/cvspublic/logging-log4cxx/include/log4cxx/spi/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- include/log4cxx/spi/Makefile.am 2 Apr 2004 08:43:05 -0000 1.2 +++ include/log4cxx/spi/Makefile.am 18 Dec 2004 20:37:50 -0000 @@ -1,3 +1,4 @@ +SUBDIRS = location spiincdir = $(includedir)/log4cxx/spi spiinc_HEADERS= $(top_srcdir)/include/log4cxx/spi/*.h Index: src/loglog.cpp =================================================================== RCS file: /home/cvspublic/logging-log4cxx/src/loglog.cpp,v retrieving revision 1.8 diff -u -r1.8 loglog.cpp --- src/loglog.cpp 18 Dec 2004 07:53:05 -0000 1.8 +++ src/loglog.cpp 18 Dec 2004 20:37:51 -0000 @@ -21,7 +21,7 @@ using namespace log4cxx; using namespace log4cxx::helpers; -bool LogLog::debugEnabled = true; +bool LogLog::debugEnabled = false; bool LogLog::quietMode = false; void LogLog::setInternalDebugging(bool debugEnabled)
