[dovecot-cvs] dovecot autogen.sh,1.4,1.5
tss at dovecot.org
tss at dovecot.org
Thu Jan 4 00:53:35 UTC 2007
Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv18848
Modified Files:
autogen.sh
Log Message:
Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Index: autogen.sh
===================================================================
RCS file: /var/lib/cvs/dovecot/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- autogen.sh 13 Jan 2006 11:14:01 -0000 1.4
+++ autogen.sh 4 Jan 2007 00:53:33 -0000 1.5
@@ -1,5 +1,20 @@
-aclocal
-autoheader
-libtoolize --force
-automake --add-missing
-autoconf
+#!/bin/sh
+
+# If you've non-standard directories, set these
+ACLOCAL_DIR=
+GETTEXT_DIR=
+
+if test "$ACLOCAL_DIR" != ""; then
+ ACLOCAL="aclocal -I $ACLOCAL_DIR"
+ export ACLOCAL
+fi
+
+autoreconf -i -f
+
+for dir in $GETTEXT_DIR /usr/share/gettext; do
+ if test -f $dir/config.rpath; then
+ /bin/cp -f $dir/config.rpath .
+ break
+ fi
+done
+
More information about the dovecot-cvs
mailing list