mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-23 22:16:16 +01:00
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:
parent
fb2e5a27d9
commit
22b31d3313
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
12
autogen.sh
12
autogen.sh
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user