1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

another try with glib*.m4

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2705 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-04-22 10:08:07 +00:00 committed by cras
parent e47cab1ecc
commit 350c75714c

View File

@ -106,15 +106,16 @@ if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
fi
aclocalinclude="$ACLOCAL_FLAGS -I ."
echo "Running aclocal $aclocalinclude ..."
aclocal $aclocalinclude
error=`aclocal $aclocalinclude 2>&1`
# see if we don't have glib.m4 or glib-2.0.m4 there yet
if ! grep "^AC_DEFUN(AM_PATH_GLIB," aclocal.m4 >/dev/null; then
cp glib.m4_ glib.m4
fi
if ! grep "^AC_DEFUN(AM_PATH_GLIB_2_0," aclocal.m4 >/dev/null; then
if `echo $error|grep AM_PATH_GLIB_2_0`; then
cp glib-2.0.m4_ glib-2.0.m4
fi
if `echo $error|grep AM_PATH_GLIB[^_]`; then
cp glib.m4_ glib.m4
fi
aclocal $aclocalinclude
if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then