Sorry - there was another issue, one of the Makefiles
missed a SUBDIRS which left one lonely Makefile remaining
after a distclean.
Please apply the attached patch instead of the one from the
previous Mail.
Best Regards,
Andreas
--
Andreas Fester
mailto:[EMAIL PROTECTED]
WWW: http://littletux.homelinux.org
ICQ: 326674288
Index: autogen.sh
===================================================================
RCS file: /home/cvspublic/logging-log4cxx/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- autogen.sh 11 Mar 2005 15:17:07 -0000 1.3
+++ autogen.sh 29 May 2005 18:47:52 -0000
@@ -5,11 +5,11 @@
(Darwin) LIBTOOLIZE=glibtoolize ;;
(*) LIBTOOLIZE=libtoolize ;;
esac
-$LIBTOOLIZE --force --automake
+$LIBTOOLIZE --force --automake --copy
rm -f config.cache
rm -f config.log
aclocal -I .
autoheader
autoconf
-automake -a
+automake -a --copy
Index: performance/Makefile.am
===================================================================
RCS file: /home/cvspublic/logging-log4cxx/performance/Makefile.am,v
retrieving revision 1.8
diff -u -r1.8 Makefile.am
--- performance/Makefile.am 10 Feb 2005 05:07:31 -0000 1.8
+++ performance/Makefile.am 29 May 2005 18:47:54 -0000
@@ -1,3 +1,5 @@
+SUBDIRS = xml
+
noinst_PROGRAMS = logging
performanceincdir = $(includedir)/log4cxx
Index: src/Makefile.am
===================================================================
RCS file: /home/cvspublic/logging-log4cxx/src/Makefile.am,v
retrieving revision 1.28
diff -u -r1.28 Makefile.am
--- src/Makefile.am 29 Apr 2005 00:26:15 -0000 1.28
+++ src/Makefile.am 29 May 2005 18:47:54 -0000
@@ -23,6 +23,7 @@
datelayout.cpp \
dateformat.cpp \
defaultcategoryfactory.cpp \
+ defaultconfigurator.cpp \
domconfigurator.cpp \
exception.cpp \
fallbackerrorhandler.cpp \