Fixes from Johannes Stezenbach [...] Remove a stray setting of $LIBS.
[platform/upstream/glib.git] / m4macros / glib-gettext.m4
1 # Macro to add for using GNU gettext.
2 # Ulrich Drepper <drepper@cygnus.com>, 1995, 1996
3 #
4 # Modified to never use included libintl. 
5 # Owen Taylor <otaylor@redhat.com>, 12/15/1998
6 #
7 # Major rework to remove unused code
8 # Owen Taylor <otaylor@redhat.com>, 12/11/2002
9 #
10 # This file can be copied and used freely without restrictions.  It can
11 # be used in projects which are not available under the GNU Public License
12 # but which still want to provide support for the GNU gettext functionality.
13 #
14
15 #
16 # We need this here as well, since someone might use autoconf-2.5x
17 # to configure GLib then an older version to configure a package
18 # using AM_GLIB_GNU_GETTEXT
19 AC_PREREQ(2.53)
20
21 dnl
22 dnl We go to great lengths to make sure that aclocal won't 
23 dnl try to pull in the installed version of these macros
24 dnl when running aclocal in the glib directory.
25 dnl
26 m4_copy([AC_DEFUN],[glib_DEFUN])
27 m4_copy([AC_REQUIRE],[glib_REQUIRE])
28 dnl
29 dnl At the end, if we're not within glib, we'll define the public
30 dnl definitions in terms of our private definitions.
31 dnl
32
33 # GLIB_LC_MESSAGES
34 #--------------------
35 glib_DEFUN([GLIB_LC_MESSAGES],
36   [AC_CHECK_HEADERS([locale.h])
37     if test $ac_cv_header_locale_h = yes; then
38     AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
39       [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
40        am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
41     if test $am_cv_val_LC_MESSAGES = yes; then
42       AC_DEFINE(HAVE_LC_MESSAGES, 1,
43         [Define if your <locale.h> file defines LC_MESSAGES.])
44     fi
45   fi])
46
47 # GLIB_PATH_PROG_WITH_TEST
48 #----------------------------
49 dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
50 dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
51 glib_DEFUN([GLIB_PATH_PROG_WITH_TEST],
52 [# Extract the first word of "$2", so it can be a program name with args.
53 set dummy $2; ac_word=[$]2
54 AC_MSG_CHECKING([for $ac_word])
55 AC_CACHE_VAL(ac_cv_path_$1,
56 [case "[$]$1" in
57   /*)
58   ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
59   ;;
60   *)
61   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
62   for ac_dir in ifelse([$5], , $PATH, [$5]); do
63     test -z "$ac_dir" && ac_dir=.
64     if test -f $ac_dir/$ac_word; then
65       if [$3]; then
66         ac_cv_path_$1="$ac_dir/$ac_word"
67         break
68       fi
69     fi
70   done
71   IFS="$ac_save_ifs"
72 dnl If no 4th arg is given, leave the cache variable unset,
73 dnl so AC_PATH_PROGS will keep looking.
74 ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
75 ])dnl
76   ;;
77 esac])dnl
78 $1="$ac_cv_path_$1"
79 if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
80   AC_MSG_RESULT([$]$1)
81 else
82   AC_MSG_RESULT(no)
83 fi
84 AC_SUBST($1)dnl
85 ])
86
87 # GLIB_WITH_NLS
88 #-----------------
89 glib_DEFUN([GLIB_WITH_NLS],
90   dnl NLS is obligatory
91   [USE_NLS=yes
92     AC_SUBST(USE_NLS)
93
94     gt_cv_have_gettext=no
95
96     CATOBJEXT=NONE
97     XGETTEXT=:
98
99     AC_CHECK_HEADER(libintl.h,
100      [gt_cv_func_dgettext_libintl="no"
101       libintl_extra_libs=""
102
103       #
104       # First check in libc
105       #
106       AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
107         [AC_TRY_LINK([
108 #include <libintl.h>
109 ],
110           [return (int) dgettext ("","")],
111           gt_cv_func_dgettext_libc=yes,
112           gt_cv_func_dgettext_libc=no)
113         ])
114   
115       if test "$gt_cv_func_dgettext_libc" = "yes" ; then
116         AC_CHECK_FUNCS(bind_textdomain_codeset)
117       fi
118
119       #
120       # If we don't have everything we want, check in libintl
121       #
122       if test "$gt_cv_func_dgettext_libc" != "yes" \
123          || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
124         
125         AC_CHECK_LIB(intl, bindtextdomain,
126             [AC_CHECK_LIB(intl, dgettext,
127                           gt_cv_func_dgettext_libintl=yes)])
128
129         if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
130           AC_MSG_CHECKING([if -liconv is needed to use gettext])
131           AC_MSG_RESULT([])
132           AC_CHECK_LIB(intl, dcgettext,
133                        [gt_cv_func_dgettext_libintl=yes
134                         libintl_extra_libs=-liconv],
135                         :,-liconv)
136         fi
137
138         #
139         # If we found libintl, then check in it for bind_textdomain_codeset();
140         # we'll prefer libc if neither have bind_textdomain_codeset(),
141         # and both have dgettext
142         #
143         if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
144           glib_save_LIBS="$LIBS"
145           LIBS="$LIBS -lintl $libintl_extra_libs"
146           unset ac_cv_func_bind_textdomain_codeset
147           AC_CHECK_FUNCS(bind_textdomain_codeset)
148           LIBS="$glib_save_LIBS"
149
150           if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
151             gt_cv_func_dgettext_libc=no
152           else
153             if test "$gt_cv_func_dgettext_libc" = "yes"; then
154               gt_cv_func_dgettext_libintl=no
155             fi
156           fi
157         fi
158       fi
159
160       if test "$gt_cv_func_dgettext_libc" = "yes" \
161         || test "$gt_cv_func_dgettext_libintl" = "yes"; then
162         gt_cv_have_gettext=yes
163       fi
164   
165       if test "$gt_cv_have_gettext" = "yes"; then
166         AC_DEFINE(HAVE_GETTEXT,1,
167           [Define if the GNU gettext() function is already present or preinstalled.])
168         GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
169           [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl
170         if test "$MSGFMT" != "no"; then
171           AC_CHECK_FUNCS(dcgettext)
172           AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
173           GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
174             [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
175           AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
176                          return _nl_msg_cat_cntr],
177             [CATOBJEXT=.gmo 
178              DATADIRNAME=share],
179             [CATOBJEXT=.mo
180              DATADIRNAME=lib])
181           INSTOBJEXT=.mo
182         fi
183       fi
184     ])
185
186     if test "$gt_cv_have_gettext" = "yes" ; then
187       AC_DEFINE(ENABLE_NLS, 1,
188         [always defined to indicate that i18n is enabled])
189     fi
190
191     dnl Test whether we really found GNU xgettext.
192     if test "$XGETTEXT" != ":"; then
193       dnl If it is not GNU xgettext we define it as : so that the
194       dnl Makefiles still can work.
195       if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
196         : ;
197       else
198         AC_MSG_RESULT(
199           [found xgettext program is not GNU xgettext; ignore it])
200         XGETTEXT=":"
201       fi
202     fi
203
204     # We need to process the po/ directory.
205     POSUB=po
206
207     AC_OUTPUT_COMMANDS(
208       [case "$CONFIG_FILES" in *po/Makefile.in*)
209         sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
210       esac])
211
212     dnl These rules are solely for the distribution goal.  While doing this
213     dnl we only have to keep exactly one list of the available catalogs
214     dnl in configure.in.
215     for lang in $ALL_LINGUAS; do
216       GMOFILES="$GMOFILES $lang.gmo"
217       POFILES="$POFILES $lang.po"
218     done
219
220     dnl Make all variables we use known to autoconf.
221     AC_SUBST(CATALOGS)
222     AC_SUBST(CATOBJEXT)
223     AC_SUBST(GMOFILES)
224     AC_SUBST(INSTOBJEXT)
225     AC_SUBST(INTLLIBS)
226     AC_SUBST(PO_IN_DATADIR_TRUE)
227     AC_SUBST(PO_IN_DATADIR_FALSE)
228     AC_SUBST(POFILES)
229     AC_SUBST(POSUB)
230   ])
231
232 # AM_GLIB_GNU_GETTEXT
233 # -------------------
234 # Do checks necessary for use of gettext. If a suitable implementation 
235 # of gettext is found in either in libintl or in the C library,
236 # it will set INTLLIBS to the libraries needed for use of gettext
237 # and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable
238 # gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST()
239 # on various variables needed by the Makefile.in.in installed by 
240 # glib-gettextize.
241 dnl
242 glib_DEFUN(GLIB_GNU_GETTEXT,
243   [AC_REQUIRE([AC_PROG_CC])dnl
244    AC_REQUIRE([AC_HEADER_STDC])dnl
245    
246    GLIB_LC_MESSAGES
247    GLIB_WITH_NLS
248
249    if test "$gt_cv_have_gettext" = "yes"; then
250      if test "x$ALL_LINGUAS" = "x"; then
251        LINGUAS=
252      else
253        AC_MSG_CHECKING(for catalogs to be installed)
254        NEW_LINGUAS=
255        for lang in ${LINGUAS=$ALL_LINGUAS}; do
256          case "$ALL_LINGUAS" in
257           *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
258          esac
259        done
260        LINGUAS=$NEW_LINGUAS
261        AC_MSG_RESULT($LINGUAS)
262      fi
263
264      dnl Construct list of names of catalog files to be constructed.
265      if test -n "$LINGUAS"; then
266        for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
267      fi
268    fi
269
270    dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
271    dnl find the mkinstalldirs script in another subdir but ($top_srcdir).
272    dnl Try to locate is.
273    MKINSTALLDIRS=
274    if test -n "$ac_aux_dir"; then
275      MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
276    fi
277    if test -z "$MKINSTALLDIRS"; then
278      MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
279    fi
280    AC_SUBST(MKINSTALLDIRS)
281
282    dnl Generate list of files to be processed by xgettext which will
283    dnl be included in po/Makefile.
284    test -d po || mkdir po
285    if test "x$srcdir" != "x."; then
286      if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
287        posrcprefix="$srcdir/"
288      else
289        posrcprefix="../$srcdir/"
290      fi
291    else
292      posrcprefix="../"
293    fi
294    rm -f po/POTFILES
295    sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
296         < $srcdir/po/POTFILES.in > po/POTFILES
297   ])
298
299 # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE)
300 # -------------------------------
301 # Define VARIABLE to the location where catalog files will
302 # be installed by po/Makefile.
303 glib_DEFUN(GLIB_DEFINE_LOCALEDIR,
304 [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
305 glib_save_prefix="$prefix"
306 test "x$prefix" = xNONE && prefix=$ac_default_prefix
307 if test "x$CATOBJEXT" = "x.mo" ; then
308   localedir=`eval echo "${libdir}/locale"`
309 else
310   localedir=`eval echo "${datadir}/locale"`
311 fi
312 prefix="$glib_save_prefix"
313 AC_DEFINE_UNQUOTED($1, "$localedir",
314   [Define the location where the catalogs will be installed])
315 ])
316
317 dnl
318 dnl Now the definitions that aclocal will find
319 dnl
320 ifdef(glib_configure_in,[],[
321 AC_DEFUN(AM_GLIB_GNU_GETTEXT,[GLIB_GNU_GETTEXT($@)])
322 AC_DEFUN(AM_GLIB_DEFINE_LOCALEDIR,[GLIB_DEFINE_LOCALEDIR($@)])
323 ])dnl