warn if glib.m4 or gettext.m4 are not found in aclocal's directory.

Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>

        * autogen.sh: warn if glib.m4 or gettext.m4 are not found
          in aclocal's directory.
This commit is contained in:
CST 1998 Shawn T. Amundson 1998-12-16 03:33:22 +00:00 committed by Shawn Amundson
parent 7d7b43c244
commit 0fcd82d16a
8 changed files with 54 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -1,3 +1,8 @@
Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
* autogen.sh: warn if glib.m4 or gettext.m4 are not found
in aclocal's directory.
Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com> Tue Dec 15 21:36:14 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_layout): Create buttons, * gtk/testgtk.c (create_layout): Create buttons,

View File

@ -54,6 +54,25 @@ case $CC in
*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;; *xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
esac 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." echo "Running gettextize... Ignore non-fatal messages."
# Hmm, we specify --force here, since otherwise things dont' # Hmm, we specify --force here, since otherwise things dont'
# get added reliably, but we don't want to overwrite intl # get added reliably, but we don't want to overwrite intl