mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-12 10:45:13 +01:00
Error out if gettext support is not found. (#59386)
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com> * configure.in: Error out if gettext support is not found. (#59386)
This commit is contained in:
parent
5f5cfee3b9
commit
37fd6f79d4
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Sep 19 11:23:41 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Error out if gettext support is not found. (#59386)
|
||||||
|
|
||||||
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
* glib/gthread.h (GThreadFunctions): Add thread_equal function to
|
||||||
|
10
configure.in
10
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"
|
ALL_LINGUAS="az ca de es eu fr nn no ru sl sv ta tr uk zh_TW"
|
||||||
AM_GLIB_GNU_GETTEXT
|
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"
|
LIBS="$LIBS $INTLLIBS"
|
||||||
|
|
||||||
GETTEXT_PACKAGE=glib20
|
GETTEXT_PACKAGE=glib20
|
||||||
|
Loading…
x
Reference in New Issue
Block a user