intl.m4 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. # intl.m4 serial 8 (gettext-0.17)
  2. dnl Copyright (C) 1995-2007 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. dnl
  7. dnl This file can can be used in projects which are not available under
  8. dnl the GNU General Public License or the GNU Library General Public
  9. dnl License but which still want to provide support for the GNU gettext
  10. dnl functionality.
  11. dnl Please note that the actual code of the GNU gettext library is covered
  12. dnl by the GNU Library General Public License, and the rest of the GNU
  13. dnl gettext package package is covered by the GNU General Public License.
  14. dnl They are *not* in the public domain.
  15. dnl Authors:
  16. dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
  17. dnl Bruno Haible <haible@clisp.cons.org>, 2000-2006.
  18. AC_PREREQ(2.52)
  19. dnl Checks for all prerequisites of the intl subdirectory,
  20. dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS,
  21. dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL.
  22. AC_DEFUN([AM_INTL_SUBDIR],
  23. [
  24. AC_REQUIRE([AC_PROG_INSTALL])dnl
  25. AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
  26. AC_REQUIRE([AC_PROG_CC])dnl
  27. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  28. AC_REQUIRE([gt_GLIBC2])dnl
  29. AC_REQUIRE([AC_PROG_RANLIB])dnl
  30. AC_REQUIRE([gl_VISIBILITY])dnl
  31. AC_REQUIRE([gt_INTL_SUBDIR_CORE])dnl
  32. AC_REQUIRE([AC_TYPE_LONG_LONG_INT])dnl
  33. AC_REQUIRE([gt_TYPE_WCHAR_T])dnl
  34. AC_REQUIRE([gt_TYPE_WINT_T])dnl
  35. AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
  36. AC_REQUIRE([gt_TYPE_INTMAX_T])
  37. AC_REQUIRE([gt_PRINTF_POSIX])
  38. AC_REQUIRE([gl_GLIBC21])dnl
  39. AC_REQUIRE([gl_XSIZE])dnl
  40. AC_REQUIRE([gt_INTL_MACOSX])dnl
  41. AC_CHECK_TYPE([ptrdiff_t], ,
  42. [AC_DEFINE([ptrdiff_t], [long],
  43. [Define as the type of the result of subtracting two pointers, if the system doesn't define it.])
  44. ])
  45. AC_CHECK_HEADERS([stddef.h stdlib.h string.h])
  46. AC_CHECK_FUNCS([asprintf fwprintf putenv setenv setlocale snprintf wcslen])
  47. dnl Use the _snprintf function only if it is declared (because on NetBSD it
  48. dnl is defined as a weak alias of snprintf; we prefer to use the latter).
  49. gt_CHECK_DECL(_snprintf, [#include <stdio.h>])
  50. gt_CHECK_DECL(_snwprintf, [#include <stdio.h>])
  51. dnl Use the *_unlocked functions only if they are declared.
  52. dnl (because some of them were defined without being declared in Solaris
  53. dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built
  54. dnl on Solaris 2.5.1 to run on Solaris 2.6).
  55. dnl Don't use AC_CHECK_DECLS because it isn't supported in autoconf-2.13.
  56. gt_CHECK_DECL(getc_unlocked, [#include <stdio.h>])
  57. case $gt_cv_func_printf_posix in
  58. *yes) HAVE_POSIX_PRINTF=1 ;;
  59. *) HAVE_POSIX_PRINTF=0 ;;
  60. esac
  61. AC_SUBST([HAVE_POSIX_PRINTF])
  62. if test "$ac_cv_func_asprintf" = yes; then
  63. HAVE_ASPRINTF=1
  64. else
  65. HAVE_ASPRINTF=0
  66. fi
  67. AC_SUBST([HAVE_ASPRINTF])
  68. if test "$ac_cv_func_snprintf" = yes; then
  69. HAVE_SNPRINTF=1
  70. else
  71. HAVE_SNPRINTF=0
  72. fi
  73. AC_SUBST([HAVE_SNPRINTF])
  74. if test "$ac_cv_func_wprintf" = yes; then
  75. HAVE_WPRINTF=1
  76. else
  77. HAVE_WPRINTF=0
  78. fi
  79. AC_SUBST([HAVE_WPRINTF])
  80. AM_LANGINFO_CODESET
  81. gt_LC_MESSAGES
  82. dnl Compilation on mingw and Cygwin needs special Makefile rules, because
  83. dnl 1. when we install a shared library, we must arrange to export
  84. dnl auxiliary pointer variables for every exported variable,
  85. dnl 2. when we install a shared library and a static library simultaneously,
  86. dnl the include file specifies __declspec(dllimport) and therefore we
  87. dnl must arrange to define the auxiliary pointer variables for the
  88. dnl exported variables _also_ in the static library.
  89. if test "$enable_shared" = yes; then
  90. case "$host_os" in
  91. mingw* | cygwin*) is_woe32dll=yes ;;
  92. *) is_woe32dll=no ;;
  93. esac
  94. else
  95. is_woe32dll=no
  96. fi
  97. WOE32DLL=$is_woe32dll
  98. AC_SUBST([WOE32DLL])
  99. dnl On mingw and Cygwin, we can activate special Makefile rules which add
  100. dnl version information to the shared libraries and executables.
  101. case "$host_os" in
  102. mingw* | cygwin*) is_woe32=yes ;;
  103. *) is_woe32=no ;;
  104. esac
  105. WOE32=$is_woe32
  106. AC_SUBST([WOE32])
  107. if test $WOE32 = yes; then
  108. dnl Check for a program that compiles Windows resource files.
  109. AC_CHECK_TOOL([WINDRES], [windres])
  110. fi
  111. dnl Determine whether when creating a library, "-lc" should be passed to
  112. dnl libtool or not. On many platforms, it is required for the libtool option
  113. dnl -no-undefined to work. On HP-UX, however, the -lc - stored by libtool
  114. dnl in the *.la files - makes it impossible to create multithreaded programs,
  115. dnl because libtool also reorders the -lc to come before the -pthread, and
  116. dnl this disables pthread_create() <http://docs.hp.com/en/1896/pthreads.html>.
  117. case "$host_os" in
  118. hpux*) LTLIBC="" ;;
  119. *) LTLIBC="-lc" ;;
  120. esac
  121. AC_SUBST([LTLIBC])
  122. dnl Rename some macros and functions used for locking.
  123. AH_BOTTOM([
  124. #define __libc_lock_t gl_lock_t
  125. #define __libc_lock_define gl_lock_define
  126. #define __libc_lock_define_initialized gl_lock_define_initialized
  127. #define __libc_lock_init gl_lock_init
  128. #define __libc_lock_lock gl_lock_lock
  129. #define __libc_lock_unlock gl_lock_unlock
  130. #define __libc_lock_recursive_t gl_recursive_lock_t
  131. #define __libc_lock_define_recursive gl_recursive_lock_define
  132. #define __libc_lock_define_initialized_recursive gl_recursive_lock_define_initialized
  133. #define __libc_lock_init_recursive gl_recursive_lock_init
  134. #define __libc_lock_lock_recursive gl_recursive_lock_lock
  135. #define __libc_lock_unlock_recursive gl_recursive_lock_unlock
  136. #define glthread_in_use libintl_thread_in_use
  137. #define glthread_lock_init libintl_lock_init
  138. #define glthread_lock_lock libintl_lock_lock
  139. #define glthread_lock_unlock libintl_lock_unlock
  140. #define glthread_lock_destroy libintl_lock_destroy
  141. #define glthread_rwlock_init libintl_rwlock_init
  142. #define glthread_rwlock_rdlock libintl_rwlock_rdlock
  143. #define glthread_rwlock_wrlock libintl_rwlock_wrlock
  144. #define glthread_rwlock_unlock libintl_rwlock_unlock
  145. #define glthread_rwlock_destroy libintl_rwlock_destroy
  146. #define glthread_recursive_lock_init libintl_recursive_lock_init
  147. #define glthread_recursive_lock_lock libintl_recursive_lock_lock
  148. #define glthread_recursive_lock_unlock libintl_recursive_lock_unlock
  149. #define glthread_recursive_lock_destroy libintl_recursive_lock_destroy
  150. #define glthread_once libintl_once
  151. #define glthread_once_call libintl_once_call
  152. #define glthread_once_singlethreaded libintl_once_singlethreaded
  153. ])
  154. ])
  155. dnl Checks for the core files of the intl subdirectory:
  156. dnl dcigettext.c
  157. dnl eval-plural.h
  158. dnl explodename.c
  159. dnl finddomain.c
  160. dnl gettextP.h
  161. dnl gmo.h
  162. dnl hash-string.h hash-string.c
  163. dnl l10nflist.c
  164. dnl libgnuintl.h.in (except the *printf stuff)
  165. dnl loadinfo.h
  166. dnl loadmsgcat.c
  167. dnl localealias.c
  168. dnl log.c
  169. dnl plural-exp.h plural-exp.c
  170. dnl plural.y
  171. dnl Used by libglocale.
  172. AC_DEFUN([gt_INTL_SUBDIR_CORE],
  173. [
  174. AC_REQUIRE([AC_C_INLINE])dnl
  175. AC_REQUIRE([AC_TYPE_SIZE_T])dnl
  176. AC_REQUIRE([gl_AC_HEADER_STDINT_H])
  177. AC_REQUIRE([AC_FUNC_ALLOCA])dnl
  178. AC_REQUIRE([AC_FUNC_MMAP])dnl
  179. AC_REQUIRE([gt_INTDIV0])dnl
  180. AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])dnl
  181. AC_REQUIRE([gt_INTTYPES_PRI])dnl
  182. AC_REQUIRE([gl_LOCK])dnl
  183. AC_TRY_LINK(
  184. [int foo (int a) { a = __builtin_expect (a, 10); return a == 10 ? 0 : 1; }],
  185. [],
  186. [AC_DEFINE([HAVE_BUILTIN_EXPECT], 1,
  187. [Define to 1 if the compiler understands __builtin_expect.])])
  188. AC_CHECK_HEADERS([argz.h inttypes.h limits.h unistd.h sys/param.h])
  189. AC_CHECK_FUNCS([getcwd getegid geteuid getgid getuid mempcpy munmap \
  190. stpcpy strcasecmp strdup strtoul tsearch argz_count argz_stringify \
  191. argz_next __fsetlocking])
  192. dnl Use the *_unlocked functions only if they are declared.
  193. dnl (because some of them were defined without being declared in Solaris
  194. dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built
  195. dnl on Solaris 2.5.1 to run on Solaris 2.6).
  196. dnl Don't use AC_CHECK_DECLS because it isn't supported in autoconf-2.13.
  197. gt_CHECK_DECL(feof_unlocked, [#include <stdio.h>])
  198. gt_CHECK_DECL(fgets_unlocked, [#include <stdio.h>])
  199. AM_ICONV
  200. dnl glibc >= 2.4 has a NL_LOCALE_NAME macro when _GNU_SOURCE is defined,
  201. dnl and a _NL_LOCALE_NAME macro always.
  202. AC_CACHE_CHECK([for NL_LOCALE_NAME macro], gt_cv_nl_locale_name,
  203. [AC_TRY_LINK([#include <langinfo.h>
  204. #include <locale.h>],
  205. [char* cs = nl_langinfo(_NL_LOCALE_NAME(LC_MESSAGES));
  206. return !cs;
  207. ],
  208. gt_cv_nl_locale_name=yes,
  209. gt_cv_nl_locale_name=no)
  210. ])
  211. if test $gt_cv_nl_locale_name = yes; then
  212. AC_DEFINE(HAVE_NL_LOCALE_NAME, 1,
  213. [Define if you have <langinfo.h> and it defines the NL_LOCALE_NAME macro if _GNU_SOURCE is defined.])
  214. fi
  215. dnl intl/plural.c is generated from intl/plural.y. It requires bison,
  216. dnl because plural.y uses bison specific features. It requires at least
  217. dnl bison-1.26 because earlier versions generate a plural.c that doesn't
  218. dnl compile.
  219. dnl bison is only needed for the maintainer (who touches plural.y). But in
  220. dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put
  221. dnl the rule in general Makefile. Now, some people carelessly touch the
  222. dnl files or have a broken "make" program, hence the plural.c rule will
  223. dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not
  224. dnl present or too old.
  225. AC_CHECK_PROGS([INTLBISON], [bison])
  226. if test -z "$INTLBISON"; then
  227. ac_verc_fail=yes
  228. else
  229. dnl Found it, now check the version.
  230. AC_MSG_CHECKING([version of bison])
  231. changequote(<<,>>)dnl
  232. ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
  233. case $ac_prog_version in
  234. '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
  235. 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)
  236. changequote([,])dnl
  237. ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
  238. *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
  239. esac
  240. AC_MSG_RESULT([$ac_prog_version])
  241. fi
  242. if test $ac_verc_fail = yes; then
  243. INTLBISON=:
  244. fi
  245. ])
  246. dnl gt_CHECK_DECL(FUNC, INCLUDES)
  247. dnl Check whether a function is declared.
  248. AC_DEFUN([gt_CHECK_DECL],
  249. [
  250. AC_CACHE_CHECK([whether $1 is declared], ac_cv_have_decl_$1,
  251. [AC_TRY_COMPILE([$2], [
  252. #ifndef $1
  253. char *p = (char *) $1;
  254. #endif
  255. ], ac_cv_have_decl_$1=yes, ac_cv_have_decl_$1=no)])
  256. if test $ac_cv_have_decl_$1 = yes; then
  257. gt_value=1
  258. else
  259. gt_value=0
  260. fi
  261. AC_DEFINE_UNQUOTED([HAVE_DECL_]translit($1, [a-z], [A-Z]), [$gt_value],
  262. [Define to 1 if you have the declaration of `$1', and to 0 if you don't.])
  263. ])