gnulib-common.m4 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. # gnulib-common.m4 serial 26
  2. dnl Copyright (C) 2007-2011 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. # gl_COMMON
  7. # is expanded unconditionally through gnulib-tool magic.
  8. AC_DEFUN([gl_COMMON], [
  9. dnl Use AC_REQUIRE here, so that the code is expanded once only.
  10. AC_REQUIRE([gl_00GNULIB])
  11. AC_REQUIRE([gl_COMMON_BODY])
  12. ])
  13. AC_DEFUN([gl_COMMON_BODY], [
  14. AH_VERBATIM([isoc99_inline],
  15. [/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
  16. the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
  17. earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
  18. __APPLE__ && __MACH__ test for MacOS X.
  19. __APPLE_CC__ tests for the Apple compiler and its version.
  20. __STDC_VERSION__ tests for the C99 mode. */
  21. #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
  22. # define __GNUC_STDC_INLINE__ 1
  23. #endif])
  24. AH_VERBATIM([unused_parameter],
  25. [/* Define as a marker that can be attached to declarations that might not
  26. be used. This helps to reduce warnings, such as from
  27. GCC -Wunused-parameter. */
  28. #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
  29. # define _GL_UNUSED __attribute__ ((__unused__))
  30. #else
  31. # define _GL_UNUSED
  32. #endif
  33. /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
  34. is a misnomer outside of parameter lists. */
  35. #define _UNUSED_PARAMETER_ _GL_UNUSED
  36. /* The __pure__ attribute was added in gcc 2.96. */
  37. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
  38. # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
  39. #else
  40. # define _GL_ATTRIBUTE_PURE /* empty */
  41. #endif
  42. /* The __const__ attribute was added in gcc 2.95. */
  43. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
  44. # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
  45. #else
  46. # define _GL_ATTRIBUTE_CONST /* empty */
  47. #endif
  48. ])
  49. dnl Preparation for running test programs:
  50. dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not
  51. dnl to /dev/tty, so they can be redirected to log files. Such diagnostics
  52. dnl arise e.g., in the macros gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N.
  53. LIBC_FATAL_STDERR_=1
  54. export LIBC_FATAL_STDERR_
  55. ])
  56. # gl_MODULE_INDICATOR_CONDITION
  57. # expands to a C preprocessor expression that evaluates to 1 or 0, depending
  58. # whether a gnulib module that has been requested shall be considered present
  59. # or not.
  60. m4_define([gl_MODULE_INDICATOR_CONDITION], [1])
  61. # gl_MODULE_INDICATOR_SET_VARIABLE([modulename])
  62. # sets the shell variable that indicates the presence of the given module to
  63. # a C preprocessor expression that will evaluate to 1.
  64. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE],
  65. [
  66. gl_MODULE_INDICATOR_SET_VARIABLE_AUX(
  67. [GNULIB_[]m4_translit([[$1]],
  68. [abcdefghijklmnopqrstuvwxyz./-],
  69. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])],
  70. [gl_MODULE_INDICATOR_CONDITION])
  71. ])
  72. # gl_MODULE_INDICATOR_SET_VARIABLE_AUX([variable])
  73. # modifies the shell variable to include the gl_MODULE_INDICATOR_CONDITION.
  74. # The shell variable's value is a C preprocessor expression that evaluates
  75. # to 0 or 1.
  76. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX],
  77. [
  78. m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1],
  79. [
  80. dnl Simplify the expression VALUE || 1 to 1.
  81. $1=1
  82. ],
  83. [gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1],
  84. [gl_MODULE_INDICATOR_CONDITION])])
  85. ])
  86. # gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([variable], [condition])
  87. # modifies the shell variable to include the given condition. The shell
  88. # variable's value is a C preprocessor expression that evaluates to 0 or 1.
  89. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR],
  90. [
  91. dnl Simplify the expression 1 || CONDITION to 1.
  92. if test "$[]$1" != 1; then
  93. dnl Simplify the expression 0 || CONDITION to CONDITION.
  94. if test "$[]$1" = 0; then
  95. $1=$2
  96. else
  97. $1="($[]$1 || $2)"
  98. fi
  99. fi
  100. ])
  101. # gl_MODULE_INDICATOR([modulename])
  102. # defines a C macro indicating the presence of the given module
  103. # in a location where it can be used.
  104. # | Value | Value |
  105. # | in lib/ | in tests/ |
  106. # --------------------------------------------+---------+-----------+
  107. # Module present among main modules: | 1 | 1 |
  108. # --------------------------------------------+---------+-----------+
  109. # Module present among tests-related modules: | 0 | 1 |
  110. # --------------------------------------------+---------+-----------+
  111. # Module not present at all: | 0 | 0 |
  112. # --------------------------------------------+---------+-----------+
  113. AC_DEFUN([gl_MODULE_INDICATOR],
  114. [
  115. AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]],
  116. [abcdefghijklmnopqrstuvwxyz./-],
  117. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]),
  118. [gl_MODULE_INDICATOR_CONDITION],
  119. [Define to a C preprocessor expression that evaluates to 1 or 0,
  120. depending whether the gnulib module $1 shall be considered present.])
  121. ])
  122. # gl_MODULE_INDICATOR_FOR_TESTS([modulename])
  123. # defines a C macro indicating the presence of the given module
  124. # in lib or tests. This is useful to determine whether the module
  125. # should be tested.
  126. # | Value | Value |
  127. # | in lib/ | in tests/ |
  128. # --------------------------------------------+---------+-----------+
  129. # Module present among main modules: | 1 | 1 |
  130. # --------------------------------------------+---------+-----------+
  131. # Module present among tests-related modules: | 1 | 1 |
  132. # --------------------------------------------+---------+-----------+
  133. # Module not present at all: | 0 | 0 |
  134. # --------------------------------------------+---------+-----------+
  135. AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS],
  136. [
  137. AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]],
  138. [abcdefghijklmnopqrstuvwxyz./-],
  139. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1],
  140. [Define to 1 when the gnulib module $1 should be tested.])
  141. ])
  142. # gl_ASSERT_NO_GNULIB_POSIXCHECK
  143. # asserts that there will never be a need to #define GNULIB_POSIXCHECK.
  144. # and thereby enables an optimization of configure and config.h.
  145. # Used by Emacs.
  146. AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK],
  147. [
  148. dnl Override gl_WARN_ON_USE_PREPARE.
  149. dnl But hide this definition from 'aclocal'.
  150. AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], [])
  151. ])
  152. # gl_ASSERT_NO_GNULIB_TESTS
  153. # asserts that there will be no gnulib tests in the scope of the configure.ac
  154. # and thereby enables an optimization of config.h.
  155. # Used by Emacs.
  156. AC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS],
  157. [
  158. dnl Override gl_MODULE_INDICATOR_FOR_TESTS.
  159. AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [])
  160. ])
  161. # Test whether <features.h> exists.
  162. # Set HAVE_FEATURES_H.
  163. AC_DEFUN([gl_FEATURES_H],
  164. [
  165. AC_CHECK_HEADERS_ONCE([features.h])
  166. if test $ac_cv_header_features_h = yes; then
  167. HAVE_FEATURES_H=1
  168. else
  169. HAVE_FEATURES_H=0
  170. fi
  171. AC_SUBST([HAVE_FEATURES_H])
  172. ])
  173. # m4_foreach_w
  174. # is a backport of autoconf-2.59c's m4_foreach_w.
  175. # Remove this macro when we can assume autoconf >= 2.60.
  176. m4_ifndef([m4_foreach_w],
  177. [m4_define([m4_foreach_w],
  178. [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])
  179. # AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])
  180. # ----------------------------------------------------
  181. # Backport of autoconf-2.63b's macro.
  182. # Remove this macro when we can assume autoconf >= 2.64.
  183. m4_ifndef([AS_VAR_IF],
  184. [m4_define([AS_VAR_IF],
  185. [AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
  186. # AC_PROG_MKDIR_P
  187. # is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix
  188. # for interoperability with automake-1.9.6 from autoconf-2.62.
  189. # Remove this macro when we can assume autoconf >= 2.62 or
  190. # autoconf >= 2.60 && automake >= 1.10.
  191. m4_ifdef([AC_PROG_MKDIR_P], [
  192. dnl For automake-1.9.6 && autoconf < 2.62: Ensure MKDIR_P is AC_SUBSTed.
  193. m4_define([AC_PROG_MKDIR_P],
  194. m4_defn([AC_PROG_MKDIR_P])[
  195. AC_SUBST([MKDIR_P])])], [
  196. dnl For autoconf < 2.60: Backport of AC_PROG_MKDIR_P.
  197. AC_DEFUN_ONCE([AC_PROG_MKDIR_P],
  198. [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
  199. MKDIR_P='$(mkdir_p)'
  200. AC_SUBST([MKDIR_P])])])
  201. # AC_C_RESTRICT
  202. # This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61,
  203. # so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++
  204. # works.
  205. # This definition can be removed once autoconf >= 2.62 can be assumed.
  206. m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.62]),[-1],[
  207. AC_DEFUN([AC_C_RESTRICT],
  208. [AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict],
  209. [ac_cv_c_restrict=no
  210. # The order here caters to the fact that C++ does not require restrict.
  211. for ac_kw in __restrict __restrict__ _Restrict restrict; do
  212. AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
  213. [[typedef int * int_ptr;
  214. int foo (int_ptr $ac_kw ip) {
  215. return ip[0];
  216. }]],
  217. [[int s[1];
  218. int * $ac_kw t = s;
  219. t[0] = 0;
  220. return foo(t)]])],
  221. [ac_cv_c_restrict=$ac_kw])
  222. test "$ac_cv_c_restrict" != no && break
  223. done
  224. ])
  225. AH_VERBATIM([restrict],
  226. [/* Define to the equivalent of the C99 'restrict' keyword, or to
  227. nothing if this is not supported. Do not define if restrict is
  228. supported directly. */
  229. #undef restrict
  230. /* Work around a bug in Sun C++: it does not support _Restrict, even
  231. though the corresponding Sun C compiler does, which causes
  232. "#define restrict _Restrict" in the previous line. Perhaps some future
  233. version of Sun C++ will work with _Restrict; if so, it'll probably
  234. define __RESTRICT, just as Sun C does. */
  235. #if defined __SUNPRO_CC && !defined __RESTRICT
  236. # define _Restrict
  237. #endif])
  238. case $ac_cv_c_restrict in
  239. restrict) ;;
  240. no) AC_DEFINE([restrict], []) ;;
  241. *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;;
  242. esac
  243. ])
  244. ])
  245. # gl_BIGENDIAN
  246. # is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd.
  247. # Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some
  248. # macros invoke AC_C_BIGENDIAN with arguments.
  249. AC_DEFUN([gl_BIGENDIAN],
  250. [
  251. AC_C_BIGENDIAN
  252. ])
  253. # gl_CACHE_VAL_SILENT(cache-id, command-to-set-it)
  254. # is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not
  255. # output a spurious "(cached)" mark in the midst of other configure output.
  256. # This macro should be used instead of AC_CACHE_VAL when it is not surrounded
  257. # by an AC_MSG_CHECKING/AC_MSG_RESULT pair.
  258. AC_DEFUN([gl_CACHE_VAL_SILENT],
  259. [
  260. saved_as_echo_n="$as_echo_n"
  261. as_echo_n=':'
  262. AC_CACHE_VAL([$1], [$2])
  263. as_echo_n="$saved_as_echo_n"
  264. ])