From: Arkadiusz Miƛkiewicz Date: Sat, 11 May 2002 09:36:51 +0000 (+0000) Subject: - configure.in -> configure.ac X-Git-Tag: 0.4.0.1~115 X-Git-Url: http://git.pld-linux.org/?a=commitdiff_plain;h=18f808773c66802d16d050f78493be4a2b08708d;p=projects%2Frc-scripts.git - configure.in -> configure.ac svn-id: @1021 --- diff --git a/autogen.sh b/autogen.sh index 9e9f30dd..d766dc55 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: autogen.sh,v 1.8 2002/03/24 03:59:16 blues Exp $ +# $Id: autogen.sh,v 1.9 2002/05/11 09:36:51 misiek Exp $ # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` @@ -7,7 +7,7 @@ test -z "$srcdir" && srcdir=. PKG_NAME="PLD Linux Distribution rc-scripts" -(test -f $srcdir/configure.in \ +(test -f $srcdir/configure.ac \ && test -d $srcdir/src) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level rc-scripts directory" @@ -25,7 +25,7 @@ DIE=0 DIE=1 } -(grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { +(grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && { (libtoolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`libtool' installed to compile $PKG_NAME." @@ -35,8 +35,8 @@ DIE=0 } } -grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && { - grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ +grep "^AM_GNU_GETTEXT" $srcdir/configure.ac >/dev/null && { + grep "sed.*POTFILES" $srcdir/configure.ac >/dev/null || \ (gettextize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`gettext' installed to compile $PKG_NAME." @@ -82,7 +82,7 @@ xlc ) am_opt=--include-deps;; esac -for coin in `find $srcdir -name configure.in -print` +for coin in `find $srcdir -name configure.ac -print` do dr=`dirname $coin` if test -f $dr/NO-AUTO-GEN; then @@ -99,9 +99,9 @@ do ## echo "**Warning**: No such directory \`$k'. Ignored." fi done - if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then - if grep "sed.*POTFILES" configure.in >/dev/null; then - : do nothing -- we still have an old unmodified configure.in + if grep "^AM_GNU_GETTEXT" configure.ac >/dev/null; then + if grep "sed.*POTFILES" configure.ac >/dev/null; then + : do nothing -- we still have an old unmodified configure.ac else echo "Creating $dr/aclocal.m4 ..." test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 @@ -111,13 +111,13 @@ do test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi fi - if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then + if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then echo "Running libtoolize..." libtoolize --force --copy fi echo "Running aclocal $aclocalinclude ..." aclocal $aclocalinclude - if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then + if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then echo "Running autoheader..." autoheader fi