ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/m4/gettext.m4
Revision: 1.1
Committed: Thu Jul 19 08:24:51 2007 UTC (16 years, 10 months ago) by pippijn
Branch: MAIN
CVS Tags: HEAD
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# Content
1 # gettext.m4 serial 20 (gettext-0.12)
2 dnl Copyright © 1995-2003 Free Software Foundation, Inc.
3 dnl This file is free software, distributed under the terms of the GNU
4 dnl General Public License. As a special exception to the GNU General
5 dnl Public License, this file may be distributed as part of a program
6 dnl that contains a configuration script generated by Autoconf, under
7 dnl the same distribution terms as the rest of that program.
8 dnl
9 dnl This file can can be used in projects which are not available under
10 dnl the GNU General Public License or the GNU Library General Public
11 dnl License but which still want to provide support for the GNU gettext
12 dnl functionality.
13 dnl Please note that the actual code of the GNU gettext library is covered
14 dnl by the GNU Library General Public License, and the rest of the GNU
15 dnl gettext package package is covered by the GNU General Public License.
16 dnl They are *not* in the public domain.
17
18 dnl Authors:
19 dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
20 dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
21
22 dnl Macro to add for using GNU gettext.
23
24 dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]).
25 dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The
26 dnl default (if it is not specified or empty) is 'no-libtool'.
27 dnl INTLSYMBOL should be 'external' for packages with no intl directory,
28 dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory.
29 dnl If INTLSYMBOL is 'use-libtool', then a libtool library
30 dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static,
31 dnl depending on --{enable,disable}-{shared,static} and on the presence of
32 dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library
33 dnl $(top_builddir)/intl/libintl.a will be created.
34 dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext
35 dnl implementations (in libc or libintl) without the ngettext() function
36 dnl will be ignored. If NEEDSYMBOL is specified and is
37 dnl 'need-formatstring-macros', then GNU gettext implementations that don't
38 dnl support the ISO C 99 <inttypes.h> formatstring macros will be ignored.
39 dnl INTLDIR is used to find the intl libraries. If empty,
40 dnl the value `$(top_builddir)/intl/' is used.
41 dnl
42 dnl The result of the configuration is one of three cases:
43 dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled
44 dnl and used.
45 dnl Catalog format: GNU --> install in $(datadir)
46 dnl Catalog extension: .mo after installation, .gmo in source tree
47 dnl 2) GNU gettext has been found in the system's C library.
48 dnl Catalog format: GNU --> install in $(datadir)
49 dnl Catalog extension: .mo after installation, .gmo in source tree
50 dnl 3) No internationalization, always use English msgid.
51 dnl Catalog format: none
52 dnl Catalog extension: none
53 dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur.
54 dnl The use of .gmo is historical (it was needed to avoid overwriting the
55 dnl GNU format catalogs when building on a platform with an X/Open gettext),
56 dnl but we keep it in order not to force irrelevant filename changes on the
57 dnl maintainers.
58 dnl
59 AC_DEFUN([AM_GNU_GETTEXT],
60 [
61 dnl Argument checking.
62 ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], ,
63 [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT
64 ])])])])])
65 ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,
66 [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT
67 ])])])])
68 define(gt_included_intl, ifelse([$1], [external], [no], [yes]))
69 define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], []))
70
71 AC_REQUIRE([AM_PO_SUBDIRS])dnl
72 ifelse(gt_included_intl, yes, [
73 AC_REQUIRE([AM_INTL_SUBDIR])dnl
74 ])
75
76 dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
77 AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
78 AC_REQUIRE([AC_LIB_RPATH])
79
80 dnl Sometimes libintl requires libiconv, so first search for libiconv.
81 dnl Ideally we would do this search only after the
82 dnl if test "$USE_NLS" = "yes"; then
83 dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then
84 dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT
85 dnl the configure script would need to contain the same shell code
86 dnl again, outside any 'if'. There are two solutions:
87 dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'.
88 dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE.
89 dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not
90 dnl documented, we avoid it.
91 ifelse(gt_included_intl, yes, , [
92 AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
93 ])
94
95 dnl Set USE_NLS.
96 AM_NLS
97
98 ifelse(gt_included_intl, yes, [
99 BUILD_INCLUDED_LIBINTL=no
100 USE_INCLUDED_LIBINTL=no
101 INTL_OBJECTIVE=
102 ])
103 LIBINTL=
104 LTLIBINTL=
105 POSUB=
106
107 dnl If we use NLS figure out what method
108 if test "$USE_NLS" = "yes"; then
109 gt_use_preinstalled_gnugettext=no
110 ifelse(gt_included_intl, yes, [
111 AC_MSG_CHECKING([whether included gettext is requested])
112 AC_ARG_WITH(included-gettext,
113 [ --with-included-gettext use the GNU gettext library included here],
114 nls_cv_force_use_gnu_gettext=$withval,
115 nls_cv_force_use_gnu_gettext=no)
116 AC_MSG_RESULT($nls_cv_force_use_gnu_gettext)
117
118 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
119 if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
120 ])
121 dnl User does not insist on using GNU NLS library. Figure out what
122 dnl to use. If GNU gettext is available we use this. Else we have
123 dnl to fall back to GNU NLS library.
124
125 dnl Add a version number to the cache macros.
126 define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1)))
127 define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc])
128 define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl])
129
130 AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc,
131 [AC_TRY_LINK([#include <libintl.h>
132 ]ifelse([$2], [need-formatstring-macros],
133 [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
134 #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
135 #endif
136 changequote(,)dnl
137 typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
138 changequote([,])dnl
139 ], [])[extern int _nl_msg_cat_cntr;
140 extern int *_nl_domain_bindings;],
141 [bindtextdomain ("", "");
142 return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings],
143 gt_cv_func_gnugettext_libc=yes,
144 gt_cv_func_gnugettext_libc=no)])
145
146 if test "$gt_cv_func_gnugettext_libc" != "yes"; then
147 dnl Sometimes libintl requires libiconv, so first search for libiconv.
148 ifelse(gt_included_intl, yes, , [
149 AM_ICONV_LINK
150 ])
151 dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL
152 dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv])
153 dnl because that would add "-liconv" to LIBINTL and LTLIBINTL
154 dnl even if libiconv doesn't exist.
155 AC_LIB_LINKFLAGS_BODY([intl])
156 AC_CACHE_CHECK([for GNU gettext in libintl],
157 gt_cv_func_gnugettext_libintl,
158 [gt_save_CPPFLAGS="$CPPFLAGS"
159 CPPFLAGS="$CPPFLAGS $INCINTL"
160 gt_save_LIBS="$LIBS"
161 LIBS="$LIBS $LIBINTL"
162 dnl Now see whether libintl exists and does not depend on libiconv.
163 AC_TRY_LINK([#include <libintl.h>
164 ]ifelse([$2], [need-formatstring-macros],
165 [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
166 #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
167 #endif
168 changequote(,)dnl
169 typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
170 changequote([,])dnl
171 ], [])[extern int _nl_msg_cat_cntr;
172 extern
173 #ifdef __cplusplus
174 "C"
175 #endif
176 const char *_nl_expand_alias ();],
177 [bindtextdomain ("", "");
178 return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
179 gt_cv_func_gnugettext_libintl=yes,
180 gt_cv_func_gnugettext_libintl=no)
181 dnl Now see whether libintl exists and depends on libiconv.
182 if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then
183 LIBS="$LIBS $LIBICONV"
184 AC_TRY_LINK([#include <libintl.h>
185 ]ifelse([$2], [need-formatstring-macros],
186 [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
187 #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
188 #endif
189 changequote(,)dnl
190 typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
191 changequote([,])dnl
192 ], [])[extern int _nl_msg_cat_cntr;
193 extern
194 #ifdef __cplusplus
195 "C"
196 #endif
197 const char *_nl_expand_alias ();],
198 [bindtextdomain ("", "");
199 return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
200 [LIBINTL="$LIBINTL $LIBICONV"
201 LTLIBINTL="$LTLIBINTL $LTLIBICONV"
202 gt_cv_func_gnugettext_libintl=yes
203 ])
204 fi
205 CPPFLAGS="$gt_save_CPPFLAGS"
206 LIBS="$gt_save_LIBS"])
207 fi
208
209 dnl If an already present or preinstalled GNU gettext() is found,
210 dnl use it. But if this macro is used in GNU gettext, and GNU
211 dnl gettext is already preinstalled in libintl, we update this
212 dnl libintl. (Cf. the install rule in intl/Makefile.in.)
213 if test "$gt_cv_func_gnugettext_libc" = "yes" \
214 || { test "$gt_cv_func_gnugettext_libintl" = "yes" \
215 && test "$PACKAGE" != gettext-runtime \
216 && test "$PACKAGE" != gettext-tools; }; then
217 gt_use_preinstalled_gnugettext=yes
218 else
219 dnl Reset the values set by searching for libintl.
220 LIBINTL=
221 LTLIBINTL=
222 INCINTL=
223 fi
224
225 ifelse(gt_included_intl, yes, [
226 if test "$gt_use_preinstalled_gnugettext" != "yes"; then
227 dnl GNU gettext is not found in the C library.
228 dnl Fall back on included GNU gettext library.
229 nls_cv_use_gnu_gettext=yes
230 fi
231 fi
232
233 if test "$nls_cv_use_gnu_gettext" = "yes"; then
234 dnl Mark actions used to generate GNU NLS library.
235 BUILD_INCLUDED_LIBINTL=yes
236 USE_INCLUDED_LIBINTL=yes
237 INTL_OBJECTIVE=intl
238 LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV"
239 LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV"
240 LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
241 fi
242
243 if test "$gt_use_preinstalled_gnugettext" = "yes" \
244 || test "$nls_cv_use_gnu_gettext" = "yes"; then
245 dnl Mark actions to use GNU gettext tools.
246 CATOBJEXT=.gmo
247 fi
248 ])
249
250 if test "$gt_use_preinstalled_gnugettext" = "yes" \
251 || test "$nls_cv_use_gnu_gettext" = "yes"; then
252 AC_DEFINE(ENABLE_NLS, 1,
253 [Define to 1 if translation of program messages to the user's native language
254 is requested.])
255 else
256 USE_NLS=no
257 fi
258 fi
259
260 AC_MSG_CHECKING([whether to use NLS])
261 AC_MSG_RESULT([$USE_NLS])
262 if test "$USE_NLS" = "yes"; then
263 AC_MSG_CHECKING([where the gettext function comes from])
264 if test "$gt_use_preinstalled_gnugettext" = "yes"; then
265 if test "$gt_cv_func_gnugettext_libintl" = "yes"; then
266 gt_source="external libintl"
267 else
268 gt_source="libc"
269 fi
270 else
271 gt_source="included intl directory"
272 fi
273 AC_MSG_RESULT([$gt_source])
274 fi
275
276 if test "$USE_NLS" = "yes"; then
277
278 if test "$gt_use_preinstalled_gnugettext" = "yes"; then
279 if test "$gt_cv_func_gnugettext_libintl" = "yes"; then
280 AC_MSG_CHECKING([how to link with libintl])
281 AC_MSG_RESULT([$LIBINTL])
282 AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
283 fi
284
285 dnl For backward compatibility. Some packages may be using this.
286 AC_DEFINE(HAVE_GETTEXT, 1,
287 [Define if the GNU gettext() function is already present or preinstalled.])
288 AC_DEFINE(HAVE_DCGETTEXT, 1,
289 [Define if the GNU dcgettext() function is already present or preinstalled.])
290 fi
291
292 dnl We need to process the po/ directory.
293 POSUB=po
294 fi
295
296 ifelse(gt_included_intl, yes, [
297 dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL
298 dnl to 'yes' because some of the testsuite requires it.
299 if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then
300 BUILD_INCLUDED_LIBINTL=yes
301 fi
302
303 dnl Make all variables we use known to autoconf.
304 AC_SUBST(BUILD_INCLUDED_LIBINTL)
305 AC_SUBST(USE_INCLUDED_LIBINTL)
306 AC_SUBST(INTL_OBJECTIVE)
307 AC_SUBST(CATOBJEXT)
308
309 dnl For backward compatibility. Some configure.ins may be using this.
310 nls_cv_header_intl=
311 nls_cv_header_libgt=
312
313 dnl For backward compatibility. Some Makefiles may be using this.
314 DATADIRNAME=share
315 AC_SUBST(DATADIRNAME)
316
317 dnl For backward compatibility. Some Makefiles may be using this.
318 INSTOBJEXT=.mo
319 AC_SUBST(INSTOBJEXT)
320
321 dnl For backward compatibility. Some Makefiles may be using this.
322 GENCAT=gencat
323 AC_SUBST(GENCAT)
324
325 dnl For backward compatibility. Some Makefiles may be using this.
326 if test "$USE_INCLUDED_LIBINTL" = yes; then
327 INTLOBJS="\$(GETTOBJS)"
328 fi
329 AC_SUBST(INTLOBJS)
330
331 dnl Enable libtool support if the surrounding package wishes it.
332 INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix
333 AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX)
334 ])
335
336 dnl For backward compatibility. Some Makefiles may be using this.
337 INTLLIBS="$LIBINTL"
338 AC_SUBST(INTLLIBS)
339
340 dnl Make all documented variables known to autoconf.
341 AC_SUBST(LIBINTL)
342 AC_SUBST(LTLIBINTL)
343 AC_SUBST(POSUB)
344 ])
345
346
347 dnl Checks for all prerequisites of the intl subdirectory,
348 dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS,
349 dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL.
350 AC_DEFUN([AM_INTL_SUBDIR],
351 [
352 AC_REQUIRE([AC_PROG_INSTALL])dnl
353 AC_REQUIRE([AM_MKINSTALLDIRS])dnl
354 AC_REQUIRE([AC_PROG_CC])dnl
355 AC_REQUIRE([AC_CANONICAL_HOST])dnl
356 AC_REQUIRE([AC_PROG_RANLIB])dnl
357 AC_REQUIRE([AC_ISC_POSIX])dnl
358 AC_REQUIRE([AC_HEADER_STDC])dnl
359 AC_REQUIRE([AC_C_CONST])dnl
360 AC_REQUIRE([AC_C_INLINE])dnl
361 AC_REQUIRE([AC_TYPE_OFF_T])dnl
362 AC_REQUIRE([AC_TYPE_SIZE_T])dnl
363 AC_REQUIRE([AC_FUNC_ALLOCA])dnl
364 AC_REQUIRE([AC_FUNC_MMAP])dnl
365 AC_REQUIRE([jm_GLIBC21])dnl
366 AC_REQUIRE([gt_INTDIV0])dnl
367 AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl
368 AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl
369 AC_REQUIRE([gt_INTTYPES_PRI])dnl
370
371 AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
372 stdlib.h string.h unistd.h sys/param.h])
373 AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \
374 geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \
375 strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next \
376 __fsetlocking])
377
378 AM_ICONV
379 AM_LANGINFO_CODESET
380 if test $ac_cv_header_locale_h = yes; then
381 AM_LC_MESSAGES
382 fi
383
384 dnl intl/plural.c is generated from intl/plural.y. It requires bison,
385 dnl because plural.y uses bison specific features. It requires at least
386 dnl bison-1.26 because earlier versions generate a plural.c that doesn't
387 dnl compile.
388 dnl bison is only needed for the maintainer (who touches plural.y). But in
389 dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put
390 dnl the rule in general Makefile. Now, some people carelessly touch the
391 dnl files or have a broken "make" program, hence the plural.c rule will
392 dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not
393 dnl present or too old.
394 AC_CHECK_PROGS([INTLBISON], [bison])
395 if test -z "$INTLBISON"; then
396 ac_verc_fail=yes
397 else
398 dnl Found it, now check the version.
399 AC_MSG_CHECKING([version of bison])
400 changequote(<<,>>)dnl
401 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
402 case $ac_prog_version in
403 '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
404 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)
405 changequote([,])dnl
406 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
407 *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
408 esac
409 AC_MSG_RESULT([$ac_prog_version])
410 fi
411 if test $ac_verc_fail = yes; then
412 INTLBISON=:
413 fi
414 ])
415
416
417 dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version])
418 AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])