mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-22 15:19:16 +02:00
Test for Solaris native gettext in libc, seeing if it supports GNU catalog
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * m4macros/glib-gettext.m4: Test for Solaris native gettext in libc, seeing if it supports GNU catalog format (#85217).
This commit is contained in:
parent
4a21238fef
commit
3bfb73d477
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
|
* m4macros/glib-gettext.m4: Test for Solaris native gettext
|
||||||
|
in libc, seeing if it supports GNU catalog format (#85217).
|
||||||
|
|
||||||
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* glib/gmain.c: When dispatching a source that is
|
* glib/gmain.c: When dispatching a source that is
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
|
* m4macros/glib-gettext.m4: Test for Solaris native gettext
|
||||||
|
in libc, seeing if it supports GNU catalog format (#85217).
|
||||||
|
|
||||||
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* glib/gmain.c: When dispatching a source that is
|
* glib/gmain.c: When dispatching a source that is
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
|
* m4macros/glib-gettext.m4: Test for Solaris native gettext
|
||||||
|
in libc, seeing if it supports GNU catalog format (#85217).
|
||||||
|
|
||||||
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* glib/gmain.c: When dispatching a source that is
|
* glib/gmain.c: When dispatching a source that is
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
|
* m4macros/glib-gettext.m4: Test for Solaris native gettext
|
||||||
|
in libc, seeing if it supports GNU catalog format (#85217).
|
||||||
|
|
||||||
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* glib/gmain.c: When dispatching a source that is
|
* glib/gmain.c: When dispatching a source that is
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
|
* m4macros/glib-gettext.m4: Test for Solaris native gettext
|
||||||
|
in libc, seeing if it supports GNU catalog format (#85217).
|
||||||
|
|
||||||
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* glib/gmain.c: When dispatching a source that is
|
* glib/gmain.c: When dispatching a source that is
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
|
||||||
|
|
||||||
|
* m4macros/glib-gettext.m4: Test for Solaris native gettext
|
||||||
|
in libc, seeing if it supports GNU catalog format (#85217).
|
||||||
|
|
||||||
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* glib/gmain.c: When dispatching a source that is
|
* glib/gmain.c: When dispatching a source that is
|
||||||
|
@ -192,8 +192,24 @@ glib_DEFUN([GLIB_WITH_NLS],
|
|||||||
return _nl_msg_cat_cntr],
|
return _nl_msg_cat_cntr],
|
||||||
[CATOBJEXT=.gmo
|
[CATOBJEXT=.gmo
|
||||||
DATADIRNAME=share],
|
DATADIRNAME=share],
|
||||||
[CATOBJEXT=.mo
|
[case $host in
|
||||||
DATADIRNAME=lib])
|
*-*-solaris*)
|
||||||
|
dnl On Solaris, if bind_textdomain_codeset is in libc,
|
||||||
|
dnl GNU format message catalog is always supported,
|
||||||
|
dnl since both are added to the libc all together.
|
||||||
|
dnl Hence, we'd like to go with DATADIRNAME=share and
|
||||||
|
dnl and CATOBJEXT=.gmo in this case.
|
||||||
|
AC_CHECK_FUNC(bind_textdomain_codeset,
|
||||||
|
[CATOBJEXT=.gmo
|
||||||
|
DATADIRNAME=share],
|
||||||
|
[CATOBJEXT=.mo
|
||||||
|
DATADIRNAME=lib])
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
CATOBJEXT=.mo
|
||||||
|
DATADIRNAME=lib
|
||||||
|
;;
|
||||||
|
esac])
|
||||||
INSTOBJEXT=.mo
|
INSTOBJEXT=.mo
|
||||||
else
|
else
|
||||||
gt_cv_have_gettext=no
|
gt_cv_have_gettext=no
|
||||||
|
Loading…
x
Reference in New Issue
Block a user