gnulib-common.m4 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. # gnulib-common.m4 serial 18
  2. dnl Copyright (C) 2007-2010 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. ])
  37. ])
  38. # gl_MODULE_INDICATOR_CONDITION
  39. # expands to a C preprocessor expression that evaluates to 1 or 0, depending
  40. # whether a gnulib module that has been requested shall be considered present
  41. # or not.
  42. AC_DEFUN([gl_MODULE_INDICATOR_CONDITION], [1])
  43. # gl_MODULE_INDICATOR_SET_VARIABLE([modulename])
  44. # sets the shell variable that indicates the presence of the given module to
  45. # a C preprocessor expression that will evaluate to 1.
  46. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE],
  47. [
  48. GNULIB_[]m4_translit([[$1]],
  49. [abcdefghijklmnopqrstuvwxyz./-],
  50. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=gl_MODULE_INDICATOR_CONDITION
  51. ])
  52. # gl_MODULE_INDICATOR([modulename])
  53. # defines a C macro indicating the presence of the given module
  54. # in a location where it can be used.
  55. # | Value | Value |
  56. # | in lib/ | in tests/ |
  57. # --------------------------------------------+---------+-----------+
  58. # Module present among main modules: | 1 | 1 |
  59. # --------------------------------------------+---------+-----------+
  60. # Module present among tests-related modules: | 0 | 1 |
  61. # --------------------------------------------+---------+-----------+
  62. # Module not present at all: | 0 | 0 |
  63. # --------------------------------------------+---------+-----------+
  64. AC_DEFUN([gl_MODULE_INDICATOR],
  65. [
  66. AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]],
  67. [abcdefghijklmnopqrstuvwxyz./-],
  68. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]),
  69. [gl_MODULE_INDICATOR_CONDITION],
  70. [Define to a C preprocessor expression that evaluates to 1 or 0,
  71. depending whether the gnulib module $1 shall be considered present.])
  72. ])
  73. # gl_MODULE_INDICATOR_FOR_TESTS([modulename])
  74. # defines a C macro indicating the presence of the given module
  75. # in lib or tests. This is useful to determine whether the module
  76. # should be tested.
  77. # | Value | Value |
  78. # | in lib/ | in tests/ |
  79. # --------------------------------------------+---------+-----------+
  80. # Module present among main modules: | 1 | 1 |
  81. # --------------------------------------------+---------+-----------+
  82. # Module present among tests-related modules: | 1 | 1 |
  83. # --------------------------------------------+---------+-----------+
  84. # Module not present at all: | 0 | 0 |
  85. # --------------------------------------------+---------+-----------+
  86. AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS],
  87. [
  88. AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]],
  89. [abcdefghijklmnopqrstuvwxyz./-],
  90. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1],
  91. [Define to 1 when the gnulib module $1 should be tested.])
  92. ])
  93. # m4_foreach_w
  94. # is a backport of autoconf-2.59c's m4_foreach_w.
  95. # Remove this macro when we can assume autoconf >= 2.60.
  96. m4_ifndef([m4_foreach_w],
  97. [m4_define([m4_foreach_w],
  98. [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])
  99. # AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])
  100. # ----------------------------------------------------
  101. # Backport of autoconf-2.63b's macro.
  102. # Remove this macro when we can assume autoconf >= 2.64.
  103. m4_ifndef([AS_VAR_IF],
  104. [m4_define([AS_VAR_IF],
  105. [AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
  106. # AC_PROG_MKDIR_P
  107. # is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix
  108. # for interoperability with automake-1.9.6 from autoconf-2.62.
  109. # Remove this macro when we can assume autoconf >= 2.62 or
  110. # autoconf >= 2.60 && automake >= 1.10.
  111. m4_ifdef([AC_PROG_MKDIR_P], [
  112. dnl For automake-1.9.6 && autoconf < 2.62: Ensure MKDIR_P is AC_SUBSTed.
  113. m4_define([AC_PROG_MKDIR_P],
  114. m4_defn([AC_PROG_MKDIR_P])[
  115. AC_SUBST([MKDIR_P])])], [
  116. dnl For autoconf < 2.60: Backport of AC_PROG_MKDIR_P.
  117. AC_DEFUN_ONCE([AC_PROG_MKDIR_P],
  118. [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
  119. MKDIR_P='$(mkdir_p)'
  120. AC_SUBST([MKDIR_P])])])
  121. # AC_C_RESTRICT
  122. # This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61,
  123. # so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++
  124. # works.
  125. # This definition can be removed once autoconf >= 2.62 can be assumed.
  126. AC_DEFUN([AC_C_RESTRICT],
  127. [AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict],
  128. [ac_cv_c_restrict=no
  129. # The order here caters to the fact that C++ does not require restrict.
  130. for ac_kw in __restrict __restrict__ _Restrict restrict; do
  131. AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
  132. [[typedef int * int_ptr;
  133. int foo (int_ptr $ac_kw ip) {
  134. return ip[0];
  135. }]],
  136. [[int s[1];
  137. int * $ac_kw t = s;
  138. t[0] = 0;
  139. return foo(t)]])],
  140. [ac_cv_c_restrict=$ac_kw])
  141. test "$ac_cv_c_restrict" != no && break
  142. done
  143. ])
  144. AH_VERBATIM([restrict],
  145. [/* Define to the equivalent of the C99 'restrict' keyword, or to
  146. nothing if this is not supported. Do not define if restrict is
  147. supported directly. */
  148. #undef restrict
  149. /* Work around a bug in Sun C++: it does not support _Restrict, even
  150. though the corresponding Sun C compiler does, which causes
  151. "#define restrict _Restrict" in the previous line. Perhaps some future
  152. version of Sun C++ will work with _Restrict; if so, it'll probably
  153. define __RESTRICT, just as Sun C does. */
  154. #if defined __SUNPRO_CC && !defined __RESTRICT
  155. # define _Restrict
  156. #endif])
  157. case $ac_cv_c_restrict in
  158. restrict) ;;
  159. no) AC_DEFINE([restrict], []) ;;
  160. *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;;
  161. esac
  162. ])
  163. # gl_BIGENDIAN
  164. # is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd.
  165. # Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some
  166. # macros invoke AC_C_BIGENDIAN with arguments.
  167. AC_DEFUN([gl_BIGENDIAN],
  168. [
  169. AC_C_BIGENDIAN
  170. ])
  171. # gl_CACHE_VAL_SILENT(cache-id, command-to-set-it)
  172. # is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not
  173. # output a spurious "(cached)" mark in the midst of other configure output.
  174. # This macro should be used instead of AC_CACHE_VAL when it is not surrounded
  175. # by an AC_MSG_CHECKING/AC_MSG_RESULT pair.
  176. AC_DEFUN([gl_CACHE_VAL_SILENT],
  177. [
  178. saved_as_echo_n="$as_echo_n"
  179. as_echo_n=':'
  180. AC_CACHE_VAL([$1], [$2])
  181. as_echo_n="$saved_as_echo_n"
  182. ])