Hi,
I created the attached patch which modifies autogen.sh
so that helper files are not linked but copied. This
will simplify the creation of dist-tarballs.
Also, one of the Makefile.am missed a source file which
lead to undefined symbols in simplesocketserver; the
patch also fixes this.
Together with Tommis patch the library now compiles and
is also dist-cleanable (there seem some library checks
missing in configure.in, linking failed because of missing
libldap, libexpat and libdb4.2 libraries; anyone already
analyzed this? I think there are some more library dependencies
like sasl2 which are not checked yet, so I think that I will add the
proper checks to configure.in ...)
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:01:56 -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: 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:01:57 -0000
@@ -23,6 +23,7 @@
datelayout.cpp \
dateformat.cpp \
defaultcategoryfactory.cpp \
+ defaultconfigurator.cpp \
domconfigurator.cpp \
exception.cpp \
fallbackerrorhandler.cpp \