Hi,
I just downloaded the latest trunk and got first a missing definition in
domconfigurator.cpp for configure(log4cxx::File&).
I added this to the header file:
Index: src/main/include/log4cxx/xml/domconfigurator.h
===================================================================
--- src/main/include/log4cxx/xml/domconfigurator.h (revision 606232)
+++ src/main/include/log4cxx/xml/domconfigurator.h (working copy)
@@ -247,6 +247,7 @@
A static version of #doConfigure.
*/
static void configure(const std::string&
filename);
+ static void configure(log4cxx::File&);
#if LOG4CXX_WCHAR_T_API
static void configure(const std::wstring&
filename);
#endif
and the build keep going until it fails with:
log4cxx/src/main/cpp/domconfigurator.cpp:772: undefined reference to
`log4cxx::helpers::FileWatchdog::DEFAULT_DELAY'
Any ideas there?
Thanks,
-- Bernd Prager