diff --git a/SRC/recreate-autofiles b/SRC/recreate-autofiles new file mode 100755 index 0000000..37b1461 --- /dev/null +++ b/SRC/recreate-autofiles @@ -0,0 +1,24 @@ +#!/bin/sh + +# For developers only: use it only if you know about autotools. + +set -e + +# Does *not* work with automake 1.4! +aclocal +autoheader +libtoolize --force +automake --add-missing +autoconf +pushd plugins +aclocal +automake --foreign --add-missing +autoconf +for dir in dns random whois ldap postgresql; do + cd $dir + aclocal + autoheader + automake --foreign --add-missing + autoconf + cd .. +done \ No newline at end of file