1
# gnulib-common.m4 serial 20
2
dnl Copyright (C) 2007-2010 Free Software Foundation, Inc.
1
# gnulib-common.m4 serial 32
2
dnl Copyright (C) 2007-2012 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
12
12
AC_REQUIRE([gl_COMMON_BODY])
14
14
AC_DEFUN([gl_COMMON_BODY], [
15
AH_VERBATIM([_Noreturn],
16
[/* The _Noreturn keyword of C11. */
18
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
19
|| 0x5110 <= __SUNPRO_C)
20
# define _Noreturn __attribute__ ((__noreturn__))
21
# elif defined _MSC_VER && 1200 <= _MSC_VER
22
# define _Noreturn __declspec (noreturn)
15
28
AH_VERBATIM([isoc99_inline],
16
29
[/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
17
30
the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
34
47
/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
35
48
is a misnomer outside of parameter lists. */
36
49
#define _UNUSED_PARAMETER_ _GL_UNUSED
51
/* The __pure__ attribute was added in gcc 2.96. */
52
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
53
# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
55
# define _GL_ATTRIBUTE_PURE /* empty */
58
/* The __const__ attribute was added in gcc 2.95. */
59
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
60
# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
62
# define _GL_ATTRIBUTE_CONST /* empty */
38
65
dnl Preparation for running test programs:
39
66
dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not
47
74
# expands to a C preprocessor expression that evaluates to 1 or 0, depending
48
75
# whether a gnulib module that has been requested shall be considered present
50
AC_DEFUN([gl_MODULE_INDICATOR_CONDITION], [1])
77
m4_define([gl_MODULE_INDICATOR_CONDITION], [1])
52
79
# gl_MODULE_INDICATOR_SET_VARIABLE([modulename])
53
80
# sets the shell variable that indicates the presence of the given module to
54
81
# a C preprocessor expression that will evaluate to 1.
55
82
AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE],
57
GNULIB_[]m4_translit([[$1]],
58
[abcdefghijklmnopqrstuvwxyz./-],
59
[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=gl_MODULE_INDICATOR_CONDITION
84
gl_MODULE_INDICATOR_SET_VARIABLE_AUX(
85
[GNULIB_[]m4_translit([[$1]],
86
[abcdefghijklmnopqrstuvwxyz./-],
87
[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])],
88
[gl_MODULE_INDICATOR_CONDITION])
91
# gl_MODULE_INDICATOR_SET_VARIABLE_AUX([variable])
92
# modifies the shell variable to include the gl_MODULE_INDICATOR_CONDITION.
93
# The shell variable's value is a C preprocessor expression that evaluates
95
AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX],
97
m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1],
99
dnl Simplify the expression VALUE || 1 to 1.
102
[gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1],
103
[gl_MODULE_INDICATOR_CONDITION])])
106
# gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([variable], [condition])
107
# modifies the shell variable to include the given condition. The shell
108
# variable's value is a C preprocessor expression that evaluates to 0 or 1.
109
AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR],
111
dnl Simplify the expression 1 || CONDITION to 1.
112
if test "$[]$1" != 1; then
113
dnl Simplify the expression 0 || CONDITION to CONDITION.
114
if test "$[]$1" = 0; then
62
122
# gl_MODULE_INDICATOR([modulename])
102
162
[Define to 1 when the gnulib module $1 should be tested.])
165
# gl_ASSERT_NO_GNULIB_POSIXCHECK
166
# asserts that there will never be a need to #define GNULIB_POSIXCHECK.
167
# and thereby enables an optimization of configure and config.h.
169
AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK],
171
dnl Override gl_WARN_ON_USE_PREPARE.
172
dnl But hide this definition from 'aclocal'.
173
AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], [])
176
# gl_ASSERT_NO_GNULIB_TESTS
177
# asserts that there will be no gnulib tests in the scope of the configure.ac
178
# and thereby enables an optimization of config.h.
180
AC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS],
182
dnl Override gl_MODULE_INDICATOR_FOR_TESTS.
183
AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [])
186
# Test whether <features.h> exists.
187
# Set HAVE_FEATURES_H.
188
AC_DEFUN([gl_FEATURES_H],
190
AC_CHECK_HEADERS_ONCE([features.h])
191
if test $ac_cv_header_features_h = yes; then
196
AC_SUBST([HAVE_FEATURES_H])
106
200
# is a backport of autoconf-2.59c's m4_foreach_w.
107
201
# Remove this macro when we can assume autoconf >= 2.60.
117
211
[m4_define([AS_VAR_IF],
118
212
[AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
215
# Modifies the value of the shell variable CC in an attempt to make $CC
216
# understand ISO C99 source code.
217
# This is like AC_PROG_CC_C99, except that
218
# - AC_PROG_CC_C99 did not exist in Autoconf versions < 2.60,
219
# - AC_PROG_CC_C99 does not mix well with AC_PROG_CC_STDC
220
# <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00367.html>,
221
# but many more packages use AC_PROG_CC_STDC than AC_PROG_CC_C99
222
# <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00441.html>.
223
# Remaining problems:
224
# - When AC_PROG_CC_STDC is invoked twice, it adds the C99 enabling options
226
# <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00431.html>.
227
# - AC_PROG_CC_STDC is likely to change now that C11 is an ISO standard.
228
AC_DEFUN([gl_PROG_CC_C99],
230
dnl Change that version number to the minimum Autoconf version that supports
231
dnl mixing AC_PROG_CC_C99 calls with AC_PROG_CC_STDC calls.
232
m4_version_prereq([9.0],
233
[AC_REQUIRE([AC_PROG_CC_C99])],
234
[AC_REQUIRE([AC_PROG_CC_STDC])])
238
# Determines the values for AR, ARFLAGS, RANLIB that fit with the compiler.
239
# The user can set the variables AR, ARFLAGS, RANLIB if he wants to override
241
AC_DEFUN([gl_PROG_AR_RANLIB],
243
dnl Minix 3 comes with two toolchains: The Amsterdam Compiler Kit compiler
244
dnl as "cc", and GCC as "gcc". They have different object file formats and
245
dnl library formats. In particular, the GNU binutils programs ar, ranlib
246
dnl produce libraries that work only with gcc, not with cc.
247
AC_REQUIRE([AC_PROG_CC])
248
AC_CACHE_CHECK([for Minix Amsterdam compiler], [gl_cv_c_amsterdam_compiler],
250
AC_EGREP_CPP([Amsterdam],
256
[gl_cv_c_amsterdam_compiler=yes],
257
[gl_cv_c_amsterdam_compiler=no])
259
if test -z "$AR"; then
260
if test $gl_cv_c_amsterdam_compiler = yes; then
262
if test -z "$ARFLAGS"; then
266
dnl Use the Automake-documented default values for AR and ARFLAGS,
267
dnl but prefer ${host}-ar over ar (useful for cross-compiling).
268
AC_CHECK_TOOL([AR], [ar], [ar])
269
if test -z "$ARFLAGS"; then
274
if test -z "$ARFLAGS"; then
280
if test -z "$RANLIB"; then
281
if test $gl_cv_c_amsterdam_compiler = yes; then
284
dnl Use the ranlib program if it is available.
120
291
# AC_PROG_MKDIR_P
121
292
# is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix
122
293
# for interoperability with automake-1.9.6 from autoconf-2.62.