# HG changeset patch # User Sean Egan # Date 1031989656 0 # Node ID 67b0832e95425c51f3ee9b79ffa5a78c28277fe8 # Parent d7cefb94a9788d5f27894d9b11ef34fb3d5c4543 [gaim-migrate @ 3570] This will help aclocal find your gtk2 .m4 files if you have them installed in a place autoconf can't find them. Thanks Ethan. committer: Tailor Script diff -r d7cefb94a978 -r 67b0832e9542 autogen.sh --- a/autogen.sh Sat Sep 14 07:28:10 2002 +0000 +++ b/autogen.sh Sat Sep 14 07:47:36 2002 +0000 @@ -57,6 +57,10 @@ echo "Running libtoolize, please ignore non-fatal messages...." echo n | libtoolize --copy --force || exit; +if test -d /usr/local/share/aclocal ; then + ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I /usr/local/share/aclocal" +fi + aclocal -I m4 $ACLOCAL_FLAGS || exit; autoheader || exit; automake --add-missing --copy;