on May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
authorOwen Taylor <otaylor@src.gnome.org>
Tue, 14 May 2002 03:26:37 +0000 (03:26 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 14 May 2002 03:26:37 +0000 (03:26 +0000)
        * autogen.sh (have_gettext): Add a check for GNU gettext.
        (Pointed out by Dan Winship in #59386.)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
autogen.sh

index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (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)
index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (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)
index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (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)
index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (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)
index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (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)
index 78035418d0118f68fec50593b6688b38947acd70..73bd95668504c065a1e60fae69b98389e65c8d99 100644 (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)
index 0159c2125d35596ebe279dfb1179fc5268c40bb6..9da7a6021ba16d17bf477c4fdff6807abf9bf2fb 100755 (executable)
@@ -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