intl.m4 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. # intl.m4 serial 44 (gettext-0.21)
  2. dnl Copyright (C) 1995-2014, 2016-2020 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 be used in projects which are not available under
  8. dnl the GNU General Public License or the GNU Lesser 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 Lesser General Public License, and the rest of the GNU
  13. dnl gettext 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-2009.
  18. AC_PREREQ([2.60])
  19. dnl Checks for all prerequisites of the intl subdirectory,
  20. dnl except for LIBTOOL, USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL.
  21. AC_DEFUN([AM_INTL_SUBDIR],
  22. [
  23. AC_REQUIRE([AC_PROG_INSTALL])dnl
  24. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  25. AC_REQUIRE([AC_PROG_CC])dnl
  26. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  27. AC_REQUIRE([gt_GLIBC2])dnl
  28. AC_REQUIRE([gl_VISIBILITY])dnl
  29. AC_REQUIRE([gt_INTL_SUBDIR_CORE])dnl
  30. AC_REQUIRE([AC_TYPE_LONG_LONG_INT])dnl
  31. AC_REQUIRE([gt_TYPE_WCHAR_T])dnl
  32. AC_REQUIRE([gt_TYPE_WINT_T])dnl
  33. AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
  34. AC_REQUIRE([gt_TYPE_INTMAX_T])
  35. AC_REQUIRE([gt_PRINTF_POSIX])
  36. AC_REQUIRE([gl_GLIBC21])dnl
  37. AC_REQUIRE([gl_XSIZE])dnl
  38. AC_REQUIRE([gl_FCNTL_O_FLAGS])dnl
  39. AC_REQUIRE([gt_INTL_THREAD_LOCALE_NAME])
  40. AC_REQUIRE([gt_INTL_MACOSX])dnl
  41. AC_REQUIRE([gl_EXTERN_INLINE])dnl
  42. AC_REQUIRE([gt_GL_ATTRIBUTE])dnl
  43. AC_REQUIRE([AC_C_FLEXIBLE_ARRAY_MEMBER])dnl
  44. dnl In projects that use gnulib, use gl_PROG_AR_RANLIB.
  45. dnl The '][' hides this use from 'aclocal'.
  46. m4_ifdef([g][l_PROG_AR_RANLIB],
  47. [AC_REQUIRE([g][l_PROG_AR_RANLIB])],
  48. [AC_REQUIRE([AC_PROG_RANLIB])
  49. dnl Use Automake-documented default values for AR and ARFLAGS, but prefer
  50. dnl ${host}-ar over ar (useful for cross-compiling).
  51. AC_CHECK_TOOL([AR], [ar], [ar])
  52. if test -z "$ARFLAGS"; then
  53. ARFLAGS='cr'
  54. fi
  55. AC_SUBST([AR])
  56. AC_SUBST([ARFLAGS])
  57. ])
  58. dnl Support for automake's --enable-silent-rules.
  59. case "$enable_silent_rules" in
  60. yes) INTL_DEFAULT_VERBOSITY=0;;
  61. no) INTL_DEFAULT_VERBOSITY=1;;
  62. *) INTL_DEFAULT_VERBOSITY=1;;
  63. esac
  64. AC_SUBST([INTL_DEFAULT_VERBOSITY])
  65. AC_CHECK_TYPE([ptrdiff_t], ,
  66. [AC_DEFINE([ptrdiff_t], [long],
  67. [Define as the type of the result of subtracting two pointers, if the system doesn't define it.])
  68. ])
  69. AC_CHECK_HEADERS([features.h stddef.h stdlib.h string.h])
  70. AC_CHECK_FUNCS([asprintf wprintf newlocale putenv setenv \
  71. snprintf strnlen uselocale wcslen wcsnlen mbrtowc wcrtomb])
  72. dnl Use the _snprintf function only if it is declared (because on NetBSD it
  73. dnl is defined as a weak alias of snprintf; we prefer to use the latter).
  74. AC_CHECK_DECLS([_snprintf, _snwprintf], , , [#include <stdio.h>])
  75. dnl Use the *_unlocked functions only if they are declared.
  76. dnl (because some of them were defined without being declared in Solaris
  77. dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built
  78. dnl on Solaris 2.5.1 to run on Solaris 2.6).
  79. AC_CHECK_DECLS([getc_unlocked], , , [#include <stdio.h>])
  80. case $gt_cv_func_printf_posix in
  81. *yes) HAVE_POSIX_PRINTF=1 ;;
  82. *) HAVE_POSIX_PRINTF=0 ;;
  83. esac
  84. AC_SUBST([HAVE_POSIX_PRINTF])
  85. if test "$ac_cv_func_asprintf" = yes; then
  86. HAVE_ASPRINTF=1
  87. else
  88. HAVE_ASPRINTF=0
  89. fi
  90. AC_SUBST([HAVE_ASPRINTF])
  91. if test "$ac_cv_func_snprintf" = yes; then
  92. HAVE_SNPRINTF=1
  93. else
  94. HAVE_SNPRINTF=0
  95. fi
  96. AC_SUBST([HAVE_SNPRINTF])
  97. if test "$ac_cv_func_newlocale" = yes; then
  98. HAVE_NEWLOCALE=1
  99. else
  100. HAVE_NEWLOCALE=0
  101. fi
  102. AC_SUBST([HAVE_NEWLOCALE])
  103. if test "$ac_cv_func_wprintf" = yes; then
  104. HAVE_WPRINTF=1
  105. else
  106. HAVE_WPRINTF=0
  107. fi
  108. AC_SUBST([HAVE_WPRINTF])
  109. AM_LANGINFO_CODESET
  110. gt_LC_MESSAGES
  111. if test $gt_nameless_locales = yes; then
  112. HAVE_NAMELESS_LOCALES=1
  113. else
  114. HAVE_NAMELESS_LOCALES=0
  115. fi
  116. AC_SUBST([HAVE_NAMELESS_LOCALES])
  117. dnl Compilation on mingw and Cygwin needs special Makefile rules, because
  118. dnl 1. when we install a shared library, we must arrange to export
  119. dnl auxiliary pointer variables for every exported variable,
  120. dnl 2. when we install a shared library and a static library simultaneously,
  121. dnl the include file specifies __declspec(dllimport) and therefore we
  122. dnl must arrange to define the auxiliary pointer variables for the
  123. dnl exported variables _also_ in the static library.
  124. if test "$enable_shared" = yes; then
  125. case "$host_os" in
  126. mingw* | cygwin*) is_woe32dll=yes ;;
  127. *) is_woe32dll=no ;;
  128. esac
  129. else
  130. is_woe32dll=no
  131. fi
  132. WOE32DLL=$is_woe32dll
  133. AC_SUBST([WOE32DLL])
  134. dnl On mingw and Cygwin, we can activate special Makefile rules which add
  135. dnl version information to the shared libraries and executables.
  136. case "$host_os" in
  137. mingw* | cygwin*) is_woe32=yes ;;
  138. *) is_woe32=no ;;
  139. esac
  140. WOE32=$is_woe32
  141. AC_SUBST([WOE32])
  142. if test $WOE32 = yes; then
  143. dnl Check for a program that compiles Windows resource files.
  144. AC_CHECK_TOOL([WINDRES], [windres])
  145. fi
  146. dnl Rename some macros and functions used for locking.
  147. AH_BOTTOM([
  148. #define __libc_lock_t gl_lock_t
  149. #define __libc_lock_define gl_lock_define
  150. #define __libc_lock_define_initialized gl_lock_define_initialized
  151. #define __libc_lock_init gl_lock_init
  152. #define __libc_lock_lock gl_lock_lock
  153. #define __libc_lock_unlock gl_lock_unlock
  154. #define __libc_lock_recursive_t gl_recursive_lock_t
  155. #define __libc_lock_define_recursive gl_recursive_lock_define
  156. #define __libc_lock_define_initialized_recursive gl_recursive_lock_define_initialized
  157. #define __libc_lock_init_recursive gl_recursive_lock_init
  158. #define __libc_lock_lock_recursive gl_recursive_lock_lock
  159. #define __libc_lock_unlock_recursive gl_recursive_lock_unlock
  160. #define glthread_in_use libintl_thread_in_use
  161. #define glthread_lock_init_func libintl_lock_init_func
  162. #define glthread_lock_lock_func libintl_lock_lock_func
  163. #define glthread_lock_unlock_func libintl_lock_unlock_func
  164. #define glthread_lock_destroy_func libintl_lock_destroy_func
  165. #define glthread_rwlock_init_multithreaded libintl_rwlock_init_multithreaded
  166. #define glthread_rwlock_init_func libintl_rwlock_init_func
  167. #define glthread_rwlock_rdlock_multithreaded libintl_rwlock_rdlock_multithreaded
  168. #define glthread_rwlock_rdlock_func libintl_rwlock_rdlock_func
  169. #define glthread_rwlock_wrlock_multithreaded libintl_rwlock_wrlock_multithreaded
  170. #define glthread_rwlock_wrlock_func libintl_rwlock_wrlock_func
  171. #define glthread_rwlock_unlock_multithreaded libintl_rwlock_unlock_multithreaded
  172. #define glthread_rwlock_unlock_func libintl_rwlock_unlock_func
  173. #define glthread_rwlock_destroy_multithreaded libintl_rwlock_destroy_multithreaded
  174. #define glthread_rwlock_destroy_func libintl_rwlock_destroy_func
  175. #define glthread_recursive_lock_init_multithreaded libintl_recursive_lock_init_multithreaded
  176. #define glthread_recursive_lock_init_func libintl_recursive_lock_init_func
  177. #define glthread_recursive_lock_lock_multithreaded libintl_recursive_lock_lock_multithreaded
  178. #define glthread_recursive_lock_lock_func libintl_recursive_lock_lock_func
  179. #define glthread_recursive_lock_unlock_multithreaded libintl_recursive_lock_unlock_multithreaded
  180. #define glthread_recursive_lock_unlock_func libintl_recursive_lock_unlock_func
  181. #define glthread_recursive_lock_destroy_multithreaded libintl_recursive_lock_destroy_multithreaded
  182. #define glthread_recursive_lock_destroy_func libintl_recursive_lock_destroy_func
  183. #define glthread_once_func libintl_once_func
  184. #define glthread_once_singlethreaded libintl_once_singlethreaded
  185. #define glthread_once_multithreaded libintl_once_multithreaded
  186. ])
  187. ])
  188. dnl Checks for the core files of the intl subdirectory:
  189. dnl dcigettext.c
  190. dnl eval-plural.h
  191. dnl explodename.c
  192. dnl finddomain.c
  193. dnl gettextP.h
  194. dnl gmo.h
  195. dnl hash-string.h hash-string.c
  196. dnl l10nflist.c
  197. dnl libgnuintl.h.in (except the *printf stuff)
  198. dnl loadinfo.h
  199. dnl loadmsgcat.c
  200. dnl localealias.c
  201. dnl log.c
  202. dnl plural-exp.h plural-exp.c
  203. dnl plural.y
  204. dnl Used by libglocale.
  205. AC_DEFUN([gt_INTL_SUBDIR_CORE],
  206. [
  207. AC_REQUIRE([AC_C_INLINE])dnl
  208. AC_REQUIRE([AC_TYPE_SIZE_T])dnl
  209. AC_REQUIRE([gl_AC_HEADER_STDINT_H])
  210. AC_REQUIRE([AC_FUNC_ALLOCA])dnl
  211. AC_REQUIRE([AC_FUNC_MMAP])dnl
  212. AC_REQUIRE([gt_INTDIV0])dnl
  213. AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])dnl
  214. AC_REQUIRE([gl_LOCK])dnl
  215. AC_LINK_IFELSE(
  216. [AC_LANG_PROGRAM(
  217. [[int foo (int a) { a = __builtin_expect (a, 10); return a == 10 ? 0 : 1; }]],
  218. [[]])],
  219. [AC_DEFINE([HAVE_BUILTIN_EXPECT], [1],
  220. [Define to 1 if the compiler understands __builtin_expect.])])
  221. AC_CHECK_HEADERS([inttypes.h limits.h unistd.h sys/param.h])
  222. AC_CHECK_FUNCS([getcwd getegid geteuid getgid getuid mempcpy munmap \
  223. stpcpy strcasecmp strdup strtoul tsearch __fsetlocking])
  224. dnl Use the *_unlocked functions only if they are declared.
  225. dnl (because some of them were defined without being declared in Solaris
  226. dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built
  227. dnl on Solaris 2.5.1 to run on Solaris 2.6).
  228. AC_CHECK_DECLS([feof_unlocked, fgets_unlocked], , , [#include <stdio.h>])
  229. AM_ICONV
  230. dnl intl/plural.c is generated from intl/plural.y. It requires bison,
  231. dnl because plural.y uses bison specific features. It requires at least
  232. dnl bison-3.0 for %precedence.
  233. dnl bison is only needed for the maintainer (who touches plural.y). But in
  234. dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put
  235. dnl the rule in general Makefile. Now, some people carelessly touch the
  236. dnl files or have a broken "make" program, hence the plural.c rule will
  237. dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not
  238. dnl present or too old.
  239. gl_PROG_BISON([INTLBISON], [3.0])
  240. ])
  241. dnl Copies _GL_UNUSED and _GL_ATTRIBUTE_PURE definitions from
  242. dnl gnulib-common.m4 as a fallback, if the project isn't using Gnulib.
  243. AC_DEFUN([gt_GL_ATTRIBUTE], [
  244. m4_ifndef([gl_[]COMMON],
  245. AH_VERBATIM([gt_gl_attribute],
  246. [/* Define as a marker that can be attached to declarations that might not
  247. be used. This helps to reduce warnings, such as from
  248. GCC -Wunused-parameter. */
  249. #ifndef _GL_UNUSED
  250. # if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
  251. # define _GL_UNUSED __attribute__ ((__unused__))
  252. # else
  253. # define _GL_UNUSED
  254. # endif
  255. #endif
  256. /* The __pure__ attribute was added in gcc 2.96. */
  257. #ifndef _GL_ATTRIBUTE_PURE
  258. # if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
  259. # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
  260. # else
  261. # define _GL_ATTRIBUTE_PURE /* empty */
  262. # endif
  263. #endif
  264. ]))])