]> Pileus Git - ~andy/gtk/blobdiff - autogen.sh
warn if glib.m4 or gettext.m4 are not found in aclocal's directory.
[~andy/gtk] / autogen.sh
index 74950e2564f796dbc89b2409f3d506124da8d2fc..35a16326407a1d859c06e72cbfe98c061be38e9b 100755 (executable)
@@ -4,7 +4,8 @@
 srcdir=`dirname $0`
 test -z "$srcdir" && srcdir=.
 
-pushd $srcdir
+ORIGDIR=`pwd`
+cd $srcdir
 PROJECT=Gtk+
 TEST_TYPE=-d
 FILE=gdk
@@ -53,6 +54,34 @@ case $CC in
 *xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
 esac
 
+if test -z "$ACLOCAL_FLAGS"; then
+
+       acdir=`aclocal --print-ac-dir`
+        m4list="glib.m4 gettext.m4"
+
+       for file in $m4list
+       do
+               if [ ! -f "$acdir/$file" ]; then
+                       echo "WARNING: aclocal's directory is $acdir, but..."
+                       echo "         no file $acdir/$file"
+                       echo "         You may see fatal macro warnings below."
+                       echo "         If these files are installed in /some/dir, set the ACLOCAL_FLAGS "
+                       echo "         environment variable to \"-I /some/dir\", or install"
+                       echo "         $acdir/$file."
+                       echo ""
+               fi
+       done
+fi
+
+echo "Running gettextize...  Ignore non-fatal messages."
+# Hmm, we specify --force here, since otherwise things dont'
+# get added reliably, but we don't want to overwrite intl
+# while making dist.
+echo "no" | gettextize --copy --force
+
+# We don't need ./intl
+rm -rf intl
+
 aclocal $ACLOCAL_FLAGS
 
 # optionally feature autoheader
@@ -60,7 +89,7 @@ aclocal $ACLOCAL_FLAGS
 
 automake $am_opt
 autoconf
-popd
+cd $ORIGDIR
 
 $srcdir/configure "$@"