Use Gnulib's `getaddrinfo' module.
[bpt/guile.git] / m4 / gnulib-common.m4
CommitLineData
61cd9dc9
LC
1# gnulib-common.m4 serial 12
2dnl Copyright (C) 2007-2010 Free Software Foundation, Inc.
103dc4d4
LC
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7# gl_COMMON
8# is expanded unconditionally through gnulib-tool magic.
9AC_DEFUN([gl_COMMON], [
10 dnl Use AC_REQUIRE here, so that the code is expanded once only.
f240aacb 11 AC_REQUIRE([gl_00GNULIB])
103dc4d4
LC
12 AC_REQUIRE([gl_COMMON_BODY])
13])
14AC_DEFUN([gl_COMMON_BODY], [
15 AH_VERBATIM([isoc99_inline],
16[/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
17 the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
18 earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
19 __APPLE__ && __MACH__ test for MacOS X.
20 __APPLE_CC__ tests for the Apple compiler and its version.
21 __STDC_VERSION__ tests for the C99 mode. */
22#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
23# define __GNUC_STDC_INLINE__ 1
24#endif])
aa7a939c 25 AH_VERBATIM([unused_parameter],
61cd9dc9
LC
26[/* Define as a marker that can be attached to declarations that might not
27 be used. This helps to reduce warnings, such as from
28 GCC -Wunused-parameter. */
aa7a939c 29#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
61cd9dc9 30# define _GL_UNUSED __attribute__ ((__unused__))
aa7a939c 31#else
61cd9dc9 32# define _GL_UNUSED
aa7a939c 33#endif
61cd9dc9
LC
34/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
35 is a misnomer outside of parameter lists. */
36#define _UNUSED_PARAMETER_ _GL_UNUSED
aa7a939c 37])
103dc4d4
LC
38])
39
40# gl_MODULE_INDICATOR([modulename])
41# defines a C macro indicating the presence of the given module.
42AC_DEFUN([gl_MODULE_INDICATOR],
43[
44 AC_DEFINE([GNULIB_]translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1],
45 [Define to 1 when using the gnulib module ]$1[.])
46])
47
48# m4_foreach_w
49# is a backport of autoconf-2.59c's m4_foreach_w.
50# Remove this macro when we can assume autoconf >= 2.60.
51m4_ifndef([m4_foreach_w],
52 [m4_define([m4_foreach_w],
53 [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])
54
61cd9dc9
LC
55# AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])
56# ----------------------------------------------------
57# Backport of autoconf-2.63b's macro.
58# Remove this macro when we can assume autoconf >= 2.64.
59m4_ifndef([AS_VAR_IF],
60[m4_define([AS_VAR_IF],
61[AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
62
103dc4d4
LC
63# AC_PROG_MKDIR_P
64# is a backport of autoconf-2.60's AC_PROG_MKDIR_P.
65# Remove this macro when we can assume autoconf >= 2.60.
66m4_ifdef([AC_PROG_MKDIR_P], [], [
f240aacb 67 AC_DEFUN_ONCE([AC_PROG_MKDIR_P],
103dc4d4
LC
68 [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
69 MKDIR_P='$(mkdir_p)'
70 AC_SUBST([MKDIR_P])])])
71
72# AC_C_RESTRICT
73# This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61,
74# so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++
75# works.
76# This definition can be removed once autoconf >= 2.62 can be assumed.
77AC_DEFUN([AC_C_RESTRICT],
f240aacb 78[AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict],
103dc4d4
LC
79 [ac_cv_c_restrict=no
80 # The order here caters to the fact that C++ does not require restrict.
81 for ac_kw in __restrict __restrict__ _Restrict restrict; do
82 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
83 [[typedef int * int_ptr;
1cd4fffc
LC
84 int foo (int_ptr $ac_kw ip) {
85 return ip[0];
103dc4d4
LC
86 }]],
87 [[int s[1];
1cd4fffc
LC
88 int * $ac_kw t = s;
89 t[0] = 0;
90 return foo(t)]])],
103dc4d4
LC
91 [ac_cv_c_restrict=$ac_kw])
92 test "$ac_cv_c_restrict" != no && break
93 done
94 ])
95 AH_VERBATIM([restrict],
96[/* Define to the equivalent of the C99 'restrict' keyword, or to
97 nothing if this is not supported. Do not define if restrict is
98 supported directly. */
99#undef restrict
100/* Work around a bug in Sun C++: it does not support _Restrict, even
101 though the corresponding Sun C compiler does, which causes
102 "#define restrict _Restrict" in the previous line. Perhaps some future
103 version of Sun C++ will work with _Restrict; if so, it'll probably
104 define __RESTRICT, just as Sun C does. */
105#if defined __SUNPRO_CC && !defined __RESTRICT
106# define _Restrict
107#endif])
108 case $ac_cv_c_restrict in
109 restrict) ;;
110 no) AC_DEFINE([restrict], []) ;;
111 *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;;
112 esac
113])
f240aacb
LC
114
115# gl_BIGENDIAN
116# is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd.
117# Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some
118# macros invoke AC_C_BIGENDIAN with arguments.
119AC_DEFUN([gl_BIGENDIAN],
120[
121 AC_C_BIGENDIAN
122])
123
124# gl_CACHE_VAL_SILENT(cache-id, command-to-set-it)
125# is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not
126# output a spurious "(cached)" mark in the midst of other configure output.
127# This macro should be used instead of AC_CACHE_VAL when it is not surrounded
128# by an AC_MSG_CHECKING/AC_MSG_RESULT pair.
129AC_DEFUN([gl_CACHE_VAL_SILENT],
130[
131 saved_as_echo_n="$as_echo_n"
132 as_echo_n=':'
133 AC_CACHE_VAL([$1], [$2])
134 as_echo_n="$saved_as_echo_n"
135])