From: Owen Taylor Date: Wed, 19 Sep 2001 15:40:38 +0000 (+0000) Subject: Error out if gettext support is not found. (#59386) X-Git-Tag: GLIB_1_3_9~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37fd6f79d41cfa3d54c44d916a57363e0ecff354;p=platform%2Fupstream%2Fglib.git Error out if gettext support is not found. (#59386) Wed Sep 19 11:23:41 2001 Owen Taylor * configure.in: Error out if gettext support is not found. (#59386) --- diff --git a/ChangeLog b/ChangeLog index 7060a7a..057a98a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 7060a7a..057a98a 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +Wed Sep 19 11:23:41 2001 Owen Taylor + + * configure.in: Error out if gettext support is not found. (#59386) + 2001-09-19 Sebastian Wilhelmi * glib/gthread.h (GThreadFunctions): Add thread_equal function to diff --git a/configure.in b/configure.in index 892e882..b85b13e 100644 --- a/configure.in +++ b/configure.in @@ -204,6 +204,16 @@ dnl ALL_LINGUAS="az ca de es eu fr nn no ru sl sv ta tr uk zh_TW" AM_GLIB_GNU_GETTEXT + +if test "$gt_cv_func_dgettext_libc" = "yes" || test "$gt_cv_func_dgettext_libintl" = "yes"; then + : +else + AC_MSG_ERROR([ +*** You must have either have gettext support in your C library, or use the +*** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html +]) +fi + LIBS="$LIBS $INTLLIBS" GETTEXT_PACKAGE=glib20