on May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>

* autogen.sh (have_gettext): Add a check for GNU gettext.
        (Pointed out by Dan Winship in #59386.)
This commit is contained in:
Owen Taylor 2002-05-14 03:26:37 +00:00
parent fb2e5a27d9
commit 22b31d3313
8 changed files with 47 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -1,3 +1,8 @@
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_gettext): Add a check for GNU gettext.
(Pointed out by Dan Winship in #59386.)
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in acglib.m4: If sizeof(int) == sizeof(long)

View File

@ -56,6 +56,18 @@ if $have_automake ; then : ; else
DIE=1
fi
have_gettext=false
if xgettext --version 2>/dev/null | grep 'GNU' > /dev/null ; then
have_gettext=true
fi
if $have_gettext ; then : ; else
echo
echo "GNU gettext must be installed to build GLib from CVS"
echo "GNU gettext is available from http://www.gnu.org/software/gettext/"
DIE=1
fi
if test "$DIE" -eq 1; then
exit 1
fi