bitch if we don't see gtk.m4 and gettext.m4

-Yosh
This commit is contained in:
Manish Singh 1998-12-24 01:11:03 +00:00
parent a7ffce5afe
commit 7c90c13ccf
2 changed files with 24 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Dec 23 17:00:47 PST 1998 Manish Singh <yosh@gimp.org>
* autogen.sh: bitch if we can't find gtk.m4 or gettext.m4
Wed Dec 23 16:48:34 PST 1998 Manish Singh <yosh@gimp.org>
* README

View File

@ -54,7 +54,24 @@ case $CC in
*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
esac
aclocal $ACLOCAL_FLAGS
if test -z "$ACLOCAL_FLAGS"; then
acdir=`aclocal --print-ac-dir`
m4list="gtk.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'
@ -62,6 +79,8 @@ echo "Running gettextize... Ignore non-fatal messages."
# while making dist.
echo "no" | gettextize --copy --force
aclocal $ACLOCAL_FLAGS
# optionally feature autoheader
(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader