summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Henstridge <james@jamesh.id.au>2004-10-27 15:14:52 +0000
committerJames Henstridge <jamesh@src.gnome.org>2004-10-27 15:14:52 +0000
commit7dcafe978122d9b769dbe5a5ee72db8491b2b52a (patch)
treee240114806356945c59633b8e45df87d443aaec6
parentf06e257f23fa990d2faa3c32a5825b2527f0faef (diff)
downloadgnome-common-7dcafe978122d9b769dbe5a5ee72db8491b2b52a.tar.gz
if AC_CONFIG_MACRO_DIR() is used in configure.ac, pass that directory to
2004-10-27 James Henstridge <james@jamesh.id.au> * gnome-autogen.sh (ACLOCAL): if AC_CONFIG_MACRO_DIR() is used in configure.ac, pass that directory to aclocal. Run libtoolize if the configure.ac file calls LT_INIT (the new name for AC_PROG_LIBTOOL in libtool-2.0). svn path=/trunk/; revision=3478
-rw-r--r--macros2/ChangeLog7
-rw-r--r--macros2/gnome-autogen.sh16
2 files changed, 19 insertions, 4 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 24f6f50..b195cdf 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -1,3 +1,10 @@
+2004-10-27 James Henstridge <james@jamesh.id.au>
+
+ * gnome-autogen.sh (ACLOCAL): if AC_CONFIG_MACRO_DIR() is used in
+ configure.ac, pass that directory to aclocal.
+ Run libtoolize if the configure.ac file calls LT_INIT (the new
+ name for AC_PROG_LIBTOOL in libtool-2.0).
+
2004-08-16 Kjartan Maraas <kmaraas@gnome.org>
* gnome-autogen.sh: Add some foo to handle automake-1.9.x too.
diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh
index 8a64fa2..c3173b2 100644
--- a/macros2/gnome-autogen.sh
+++ b/macros2/gnome-autogen.sh
@@ -230,7 +230,8 @@ want_gtk_doc=false
configure_files="`find $srcdir -name '{arch}' -prune -o -name configure.ac -print -o -name configure.in -print`"
for configure_ac in $configure_files; do
- if grep "^A[CM]_PROG_LIBTOOL" $configure_ac >/dev/null; then
+ if grep "^A[CM]_PROG_LIBTOOL" $configure_ac >/dev/null || \
+ grep "^LT_INIT" $configure_ac >/dev/null; then
want_libtool=true
fi
if grep "^AM_GNU_GETTEXT" $configure_ac >/dev/null; then
@@ -340,7 +341,8 @@ for configure_ac in $configure_files; do
# details.
# programs that might install new macros get run before aclocal
- if grep "^A[CM]_PROG_LIBTOOL" $basename >/dev/null; then
+ if grep "^A[CM]_PROG_LIBTOOL" $basename >/dev/null || \
+ grep "^LT_INIT" $basename >/dev/null; then
printbold "Running $LIBTOOLIZE..."
$LIBTOOLIZE --force || exit 1
fi
@@ -373,9 +375,15 @@ for configure_ac in $configure_files; do
fi
# Now run aclocal to pull in any additional macros needed
- aclocalinclude="$ACLOCAL_FLAGS"
+
+ # if the AC_CONFIG_MACRO_DIR() macro is used, pass that
+ # directory to aclocal.
+ m4dir=`cat "$configure_ac" | grep '^AC_CONFIG_MACRO_DIR' | sed -n -e 's/AC_CONFIG_MACRO_DIR(\([^()]*\))/\1/p' | sed -e 's/^\[\(.*\)\]$/\1/' | sed -e 1q`
+ if [ -n "$m4dir" ]; then
+ m4dir="-I $m4dir"
+ fi
printbold "Running $ACLOCAL..."
- $ACLOCAL $aclocalinclude || exit 1
+ $ACLOCAL $m4dir $ACLOCAL_FLAGS || exit 1
if grep "GNOME_AUTOGEN_OBSOLETE" aclocal.m4 >/dev/null; then
printerr "*** obsolete gnome macros were used in $configure_ac"