Blame m4/gnulib-common.m4

Packit 8f70b4
# gnulib-common.m4 serial 39
Packit 8f70b4
dnl Copyright (C) 2007-2018 Free Software Foundation, Inc.
Packit 8f70b4
dnl This file is free software; the Free Software Foundation
Packit 8f70b4
dnl gives unlimited permission to copy and/or distribute it,
Packit 8f70b4
dnl with or without modifications, as long as this notice is preserved.
Packit 8f70b4
Packit 8f70b4
# gl_COMMON
Packit 8f70b4
# is expanded unconditionally through gnulib-tool magic.
Packit 8f70b4
AC_DEFUN([gl_COMMON], [
Packit 8f70b4
  dnl Use AC_REQUIRE here, so that the code is expanded once only.
Packit 8f70b4
  AC_REQUIRE([gl_00GNULIB])
Packit 8f70b4
  AC_REQUIRE([gl_COMMON_BODY])
Packit 8f70b4
])
Packit 8f70b4
AC_DEFUN([gl_COMMON_BODY], [
Packit 8f70b4
  AH_VERBATIM([_Noreturn],
Packit 8f70b4
[/* The _Noreturn keyword of C11.  */
Packit 8f70b4
#if ! (defined _Noreturn \
Packit 8f70b4
       || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
Packit 8f70b4
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
Packit 8f70b4
      || 0x5110 <= __SUNPRO_C)
Packit 8f70b4
#  define _Noreturn __attribute__ ((__noreturn__))
Packit 8f70b4
# elif defined _MSC_VER && 1200 <= _MSC_VER
Packit 8f70b4
#  define _Noreturn __declspec (noreturn)
Packit 8f70b4
# else
Packit 8f70b4
#  define _Noreturn
Packit 8f70b4
# endif
Packit 8f70b4
#endif
Packit 8f70b4
])
Packit 8f70b4
  AH_VERBATIM([isoc99_inline],
Packit 8f70b4
[/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
Packit 8f70b4
   the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
Packit 8f70b4
   earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
Packit 8f70b4
   __APPLE__ && __MACH__ test for Mac OS X.
Packit 8f70b4
   __APPLE_CC__ tests for the Apple compiler and its version.
Packit 8f70b4
   __STDC_VERSION__ tests for the C99 mode.  */
Packit 8f70b4
#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
Packit 8f70b4
# define __GNUC_STDC_INLINE__ 1
Packit 8f70b4
#endif])
Packit 8f70b4
  AH_VERBATIM([unused_parameter],
Packit 8f70b4
[/* Define as a marker that can be attached to declarations that might not
Packit 8f70b4
    be used.  This helps to reduce warnings, such as from
Packit 8f70b4
    GCC -Wunused-parameter.  */
Packit 8f70b4
#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
Packit 8f70b4
# define _GL_UNUSED __attribute__ ((__unused__))
Packit 8f70b4
#else
Packit 8f70b4
# define _GL_UNUSED
Packit 8f70b4
#endif
Packit 8f70b4
/* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
Packit 8f70b4
   is a misnomer outside of parameter lists.  */
Packit 8f70b4
#define _UNUSED_PARAMETER_ _GL_UNUSED
Packit 8f70b4
Packit 8f70b4
/* gcc supports the "unused" attribute on possibly unused labels, and
Packit 8f70b4
   g++ has since version 4.5.  Note to support C++ as well as C,
Packit 8f70b4
   _GL_UNUSED_LABEL should be used with a trailing ;  */
Packit 8f70b4
#if !defined __cplusplus || __GNUC__ > 4 \
Packit 8f70b4
    || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
Packit 8f70b4
# define _GL_UNUSED_LABEL _GL_UNUSED
Packit 8f70b4
#else
Packit 8f70b4
# define _GL_UNUSED_LABEL
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
/* The __pure__ attribute was added in gcc 2.96.  */
Packit 8f70b4
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
Packit 8f70b4
# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
Packit 8f70b4
#else
Packit 8f70b4
# define _GL_ATTRIBUTE_PURE /* empty */
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
/* The __const__ attribute was added in gcc 2.95.  */
Packit 8f70b4
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
Packit 8f70b4
# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
Packit 8f70b4
#else
Packit 8f70b4
# define _GL_ATTRIBUTE_CONST /* empty */
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
/* The __malloc__ attribute was added in gcc 3.  */
Packit 8f70b4
#if 3 <= __GNUC__
Packit 8f70b4
# define _GL_ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
Packit 8f70b4
#else
Packit 8f70b4
# define _GL_ATTRIBUTE_MALLOC /* empty */
Packit 8f70b4
#endif
Packit 8f70b4
])
Packit 8f70b4
  dnl Preparation for running test programs:
Packit 8f70b4
  dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not
Packit 8f70b4
  dnl to /dev/tty, so they can be redirected to log files.  Such diagnostics
Packit 8f70b4
  dnl arise e.g., in the macros gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N.
Packit 8f70b4
  LIBC_FATAL_STDERR_=1
Packit 8f70b4
  export LIBC_FATAL_STDERR_
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_MODULE_INDICATOR_CONDITION
Packit 8f70b4
# expands to a C preprocessor expression that evaluates to 1 or 0, depending
Packit 8f70b4
# whether a gnulib module that has been requested shall be considered present
Packit 8f70b4
# or not.
Packit 8f70b4
m4_define([gl_MODULE_INDICATOR_CONDITION], [1])
Packit 8f70b4
Packit 8f70b4
# gl_MODULE_INDICATOR_SET_VARIABLE([modulename])
Packit 8f70b4
# sets the shell variable that indicates the presence of the given module to
Packit 8f70b4
# a C preprocessor expression that will evaluate to 1.
Packit 8f70b4
AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE],
Packit 8f70b4
[
Packit 8f70b4
  gl_MODULE_INDICATOR_SET_VARIABLE_AUX(
Packit 8f70b4
    [GNULIB_[]m4_translit([[$1]],
Packit 8f70b4
                          [abcdefghijklmnopqrstuvwxyz./-],
Packit 8f70b4
                          [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])],
Packit 8f70b4
    [gl_MODULE_INDICATOR_CONDITION])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_MODULE_INDICATOR_SET_VARIABLE_AUX([variable])
Packit 8f70b4
# modifies the shell variable to include the gl_MODULE_INDICATOR_CONDITION.
Packit 8f70b4
# The shell variable's value is a C preprocessor expression that evaluates
Packit 8f70b4
# to 0 or 1.
Packit 8f70b4
AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX],
Packit 8f70b4
[
Packit 8f70b4
  m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1],
Packit 8f70b4
    [
Packit 8f70b4
     dnl Simplify the expression VALUE || 1 to 1.
Packit 8f70b4
     $1=1
Packit 8f70b4
    ],
Packit 8f70b4
    [gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1],
Packit 8f70b4
                                             [gl_MODULE_INDICATOR_CONDITION])])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([variable], [condition])
Packit 8f70b4
# modifies the shell variable to include the given condition.  The shell
Packit 8f70b4
# variable's value is a C preprocessor expression that evaluates to 0 or 1.
Packit 8f70b4
AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR],
Packit 8f70b4
[
Packit 8f70b4
  dnl Simplify the expression 1 || CONDITION to 1.
Packit 8f70b4
  if test "$[]$1" != 1; then
Packit 8f70b4
    dnl Simplify the expression 0 || CONDITION to CONDITION.
Packit 8f70b4
    if test "$[]$1" = 0; then
Packit 8f70b4
      $1=$2
Packit 8f70b4
    else
Packit 8f70b4
      $1="($[]$1 || $2)"
Packit 8f70b4
    fi
Packit 8f70b4
  fi
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_MODULE_INDICATOR([modulename])
Packit 8f70b4
# defines a C macro indicating the presence of the given module
Packit 8f70b4
# in a location where it can be used.
Packit 8f70b4
#                                             |  Value  |   Value   |
Packit 8f70b4
#                                             | in lib/ | in tests/ |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
# Module present among main modules:          |    1    |     1     |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
# Module present among tests-related modules: |    0    |     1     |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
# Module not present at all:                  |    0    |     0     |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
AC_DEFUN([gl_MODULE_INDICATOR],
Packit 8f70b4
[
Packit 8f70b4
  AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]],
Packit 8f70b4
      [abcdefghijklmnopqrstuvwxyz./-],
Packit 8f70b4
      [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]),
Packit 8f70b4
    [gl_MODULE_INDICATOR_CONDITION],
Packit 8f70b4
    [Define to a C preprocessor expression that evaluates to 1 or 0,
Packit 8f70b4
     depending whether the gnulib module $1 shall be considered present.])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_MODULE_INDICATOR_FOR_TESTS([modulename])
Packit 8f70b4
# defines a C macro indicating the presence of the given module
Packit 8f70b4
# in lib or tests. This is useful to determine whether the module
Packit 8f70b4
# should be tested.
Packit 8f70b4
#                                             |  Value  |   Value   |
Packit 8f70b4
#                                             | in lib/ | in tests/ |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
# Module present among main modules:          |    1    |     1     |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
# Module present among tests-related modules: |    1    |     1     |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
# Module not present at all:                  |    0    |     0     |
Packit 8f70b4
# --------------------------------------------+---------+-----------+
Packit 8f70b4
AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS],
Packit 8f70b4
[
Packit 8f70b4
  AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]],
Packit 8f70b4
      [abcdefghijklmnopqrstuvwxyz./-],
Packit 8f70b4
      [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1],
Packit 8f70b4
    [Define to 1 when the gnulib module $1 should be tested.])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_ASSERT_NO_GNULIB_POSIXCHECK
Packit 8f70b4
# asserts that there will never be a need to #define GNULIB_POSIXCHECK.
Packit 8f70b4
# and thereby enables an optimization of configure and config.h.
Packit 8f70b4
# Used by Emacs.
Packit 8f70b4
AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK],
Packit 8f70b4
[
Packit 8f70b4
  dnl Override gl_WARN_ON_USE_PREPARE.
Packit 8f70b4
  dnl But hide this definition from 'aclocal'.
Packit 8f70b4
  AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], [])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_ASSERT_NO_GNULIB_TESTS
Packit 8f70b4
# asserts that there will be no gnulib tests in the scope of the configure.ac
Packit 8f70b4
# and thereby enables an optimization of config.h.
Packit 8f70b4
# Used by Emacs.
Packit 8f70b4
AC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS],
Packit 8f70b4
[
Packit 8f70b4
  dnl Override gl_MODULE_INDICATOR_FOR_TESTS.
Packit 8f70b4
  AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# Test whether <features.h> exists.
Packit 8f70b4
# Set HAVE_FEATURES_H.
Packit 8f70b4
AC_DEFUN([gl_FEATURES_H],
Packit 8f70b4
[
Packit 8f70b4
  AC_CHECK_HEADERS_ONCE([features.h])
Packit 8f70b4
  if test $ac_cv_header_features_h = yes; then
Packit 8f70b4
    HAVE_FEATURES_H=1
Packit 8f70b4
  else
Packit 8f70b4
    HAVE_FEATURES_H=0
Packit 8f70b4
  fi
Packit 8f70b4
  AC_SUBST([HAVE_FEATURES_H])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# m4_foreach_w
Packit 8f70b4
# is a backport of autoconf-2.59c's m4_foreach_w.
Packit 8f70b4
# Remove this macro when we can assume autoconf >= 2.60.
Packit 8f70b4
m4_ifndef([m4_foreach_w],
Packit 8f70b4
  [m4_define([m4_foreach_w],
Packit 8f70b4
    [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])
Packit 8f70b4
Packit 8f70b4
# AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])
Packit 8f70b4
# ----------------------------------------------------
Packit 8f70b4
# Backport of autoconf-2.63b's macro.
Packit 8f70b4
# Remove this macro when we can assume autoconf >= 2.64.
Packit 8f70b4
m4_ifndef([AS_VAR_IF],
Packit 8f70b4
[m4_define([AS_VAR_IF],
Packit 8f70b4
[AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
Packit 8f70b4
Packit 8f70b4
# gl_PROG_CC_C99
Packit 8f70b4
# Modifies the value of the shell variable CC in an attempt to make $CC
Packit 8f70b4
# understand ISO C99 source code.
Packit 8f70b4
# This is like AC_PROG_CC_C99, except that
Packit 8f70b4
# - AC_PROG_CC_C99 did not exist in Autoconf versions < 2.60,
Packit 8f70b4
# - AC_PROG_CC_C99 does not mix well with AC_PROG_CC_STDC
Packit 8f70b4
#   <https://lists.gnu.org/r/bug-gnulib/2011-09/msg00367.html>,
Packit 8f70b4
#   but many more packages use AC_PROG_CC_STDC than AC_PROG_CC_C99
Packit 8f70b4
#   <https://lists.gnu.org/r/bug-gnulib/2011-09/msg00441.html>.
Packit 8f70b4
# Remaining problems:
Packit 8f70b4
# - When AC_PROG_CC_STDC is invoked twice, it adds the C99 enabling options
Packit 8f70b4
#   to CC twice
Packit 8f70b4
#   <https://lists.gnu.org/r/bug-gnulib/2011-09/msg00431.html>.
Packit 8f70b4
# - AC_PROG_CC_STDC is likely to change now that C11 is an ISO standard.
Packit 8f70b4
AC_DEFUN([gl_PROG_CC_C99],
Packit 8f70b4
[
Packit 8f70b4
  dnl Change that version number to the minimum Autoconf version that supports
Packit 8f70b4
  dnl mixing AC_PROG_CC_C99 calls with AC_PROG_CC_STDC calls.
Packit 8f70b4
  m4_version_prereq([9.0],
Packit 8f70b4
    [AC_REQUIRE([AC_PROG_CC_C99])],
Packit 8f70b4
    [AC_REQUIRE([AC_PROG_CC_STDC])])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_PROG_AR_RANLIB
Packit 8f70b4
# Determines the values for AR, ARFLAGS, RANLIB that fit with the compiler.
Packit 8f70b4
# The user can set the variables AR, ARFLAGS, RANLIB if he wants to override
Packit 8f70b4
# the values.
Packit 8f70b4
AC_DEFUN([gl_PROG_AR_RANLIB],
Packit 8f70b4
[
Packit 8f70b4
  dnl Minix 3 comes with two toolchains: The Amsterdam Compiler Kit compiler
Packit 8f70b4
  dnl as "cc", and GCC as "gcc". They have different object file formats and
Packit 8f70b4
  dnl library formats. In particular, the GNU binutils programs ar and ranlib
Packit 8f70b4
  dnl produce libraries that work only with gcc, not with cc.
Packit 8f70b4
  AC_REQUIRE([AC_PROG_CC])
Packit 8f70b4
  dnl The '][' hides this use from 'aclocal'.
Packit 8f70b4
  AC_BEFORE([$0], [A][M_PROG_AR])
Packit 8f70b4
  AC_CACHE_CHECK([for Minix Amsterdam compiler], [gl_cv_c_amsterdam_compiler],
Packit 8f70b4
    [
Packit 8f70b4
      AC_EGREP_CPP([Amsterdam],
Packit 8f70b4
        [
Packit 8f70b4
#ifdef __ACK__
Packit 8f70b4
Amsterdam
Packit 8f70b4
#endif
Packit 8f70b4
        ],
Packit 8f70b4
        [gl_cv_c_amsterdam_compiler=yes],
Packit 8f70b4
        [gl_cv_c_amsterdam_compiler=no])
Packit 8f70b4
    ])
Packit 8f70b4
Packit 8f70b4
  dnl Don't compete with AM_PROG_AR's decision about AR/ARFLAGS if we are not
Packit 8f70b4
  dnl building with __ACK__.
Packit 8f70b4
  if test $gl_cv_c_amsterdam_compiler = yes; then
Packit 8f70b4
    if test -z "$AR"; then
Packit 8f70b4
      AR='cc -c.a'
Packit 8f70b4
    fi
Packit 8f70b4
    if test -z "$ARFLAGS"; then
Packit 8f70b4
      ARFLAGS='-o'
Packit 8f70b4
    fi
Packit 8f70b4
  else
Packit 8f70b4
    dnl AM_PROG_AR was added in automake v1.11.2.  AM_PROG_AR does not AC_SUBST
Packit 8f70b4
    dnl ARFLAGS variable (it is filed into Makefile.in directly by automake
Packit 8f70b4
    dnl script on-demand, if not specified by ./configure of course).
Packit 8f70b4
    dnl Don't AC_REQUIRE the AM_PROG_AR otherwise the code for __ACK__ above
Packit 8f70b4
    dnl will be ignored.  Also, pay attention to call AM_PROG_AR in else block
Packit 8f70b4
    dnl because AM_PROG_AR is written so it could re-set AR variable even for
Packit 8f70b4
    dnl __ACK__.  It may seem like its easier to avoid calling the macro here,
Packit 8f70b4
    dnl but we need to AC_SUBST both AR/ARFLAGS (thus those must have some good
Packit 8f70b4
    dnl default value and automake should usually know them).
Packit 8f70b4
    dnl
Packit 8f70b4
    dnl The '][' hides this use from 'aclocal'.
Packit 8f70b4
    m4_ifdef([A][M_PROG_AR], [A][M_PROG_AR], [:])
Packit 8f70b4
  fi
Packit 8f70b4
Packit 8f70b4
  dnl In case the code above has not helped with setting AR/ARFLAGS, use
Packit 8f70b4
  dnl Automake-documented default values for AR and ARFLAGS, but prefer
Packit 8f70b4
  dnl ${host}-ar over ar (useful for cross-compiling).
Packit 8f70b4
  AC_CHECK_TOOL([AR], [ar], [ar])
Packit 8f70b4
  if test -z "$ARFLAGS"; then
Packit 8f70b4
    ARFLAGS='cr'
Packit 8f70b4
  fi
Packit 8f70b4
Packit 8f70b4
  AC_SUBST([AR])
Packit 8f70b4
  AC_SUBST([ARFLAGS])
Packit 8f70b4
  if test -z "$RANLIB"; then
Packit 8f70b4
    if test $gl_cv_c_amsterdam_compiler = yes; then
Packit 8f70b4
      RANLIB=':'
Packit 8f70b4
    else
Packit 8f70b4
      dnl Use the ranlib program if it is available.
Packit 8f70b4
      AC_PROG_RANLIB
Packit 8f70b4
    fi
Packit 8f70b4
  fi
Packit 8f70b4
  AC_SUBST([RANLIB])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# AC_PROG_MKDIR_P
Packit 8f70b4
# is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix
Packit 8f70b4
# for interoperability with automake-1.9.6 from autoconf-2.62.
Packit 8f70b4
# Remove this macro when we can assume autoconf >= 2.62 or
Packit 8f70b4
# autoconf >= 2.60 && automake >= 1.10.
Packit 8f70b4
# AC_AUTOCONF_VERSION was introduced in 2.62, so use that as the witness.
Packit 8f70b4
m4_ifndef([AC_AUTOCONF_VERSION],[
Packit 8f70b4
m4_ifdef([AC_PROG_MKDIR_P], [
Packit 8f70b4
  dnl For automake-1.9.6 && autoconf < 2.62: Ensure MKDIR_P is AC_SUBSTed.
Packit 8f70b4
  m4_define([AC_PROG_MKDIR_P],
Packit 8f70b4
    m4_defn([AC_PROG_MKDIR_P])[
Packit 8f70b4
    AC_SUBST([MKDIR_P])])], [
Packit 8f70b4
  dnl For autoconf < 2.60: Backport of AC_PROG_MKDIR_P.
Packit 8f70b4
  AC_DEFUN_ONCE([AC_PROG_MKDIR_P],
Packit 8f70b4
    [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
Packit 8f70b4
     MKDIR_P='$(mkdir_p)'
Packit 8f70b4
     AC_SUBST([MKDIR_P])])])
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# AC_C_RESTRICT
Packit 8f70b4
# This definition is copied from post-2.69 Autoconf and overrides the
Packit 8f70b4
# AC_C_RESTRICT macro from autoconf 2.60..2.69.  It can be removed
Packit 8f70b4
# once autoconf >= 2.70 can be assumed.  It's painful to check version
Packit 8f70b4
# numbers, and in practice this macro is more up-to-date than Autoconf
Packit 8f70b4
# is, so override Autoconf unconditionally.
Packit 8f70b4
AC_DEFUN([AC_C_RESTRICT],
Packit 8f70b4
[AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict],
Packit 8f70b4
  [ac_cv_c_restrict=no
Packit 8f70b4
   # The order here caters to the fact that C++ does not require restrict.
Packit 8f70b4
   for ac_kw in __restrict __restrict__ _Restrict restrict; do
Packit 8f70b4
     AC_COMPILE_IFELSE(
Packit 8f70b4
      [AC_LANG_PROGRAM(
Packit 8f70b4
         [[typedef int *int_ptr;
Packit 8f70b4
           int foo (int_ptr $ac_kw ip) { return ip[0]; }
Packit 8f70b4
           int bar (int [$ac_kw]); /* Catch GCC bug 14050.  */
Packit 8f70b4
           int bar (int ip[$ac_kw]) { return ip[0]; }
Packit 8f70b4
         ]],
Packit 8f70b4
         [[int s[1];
Packit 8f70b4
           int *$ac_kw t = s;
Packit 8f70b4
           t[0] = 0;
Packit 8f70b4
           return foo (t) + bar (t);
Packit 8f70b4
         ]])],
Packit 8f70b4
      [ac_cv_c_restrict=$ac_kw])
Packit 8f70b4
     test "$ac_cv_c_restrict" != no && break
Packit 8f70b4
   done
Packit 8f70b4
  ])
Packit 8f70b4
 AH_VERBATIM([restrict],
Packit 8f70b4
[/* Define to the equivalent of the C99 'restrict' keyword, or to
Packit 8f70b4
   nothing if this is not supported.  Do not define if restrict is
Packit 8f70b4
   supported directly.  */
Packit 8f70b4
#undef restrict
Packit 8f70b4
/* Work around a bug in Sun C++: it does not support _Restrict or
Packit 8f70b4
   __restrict__, even though the corresponding Sun C compiler ends up with
Packit 8f70b4
   "#define restrict _Restrict" or "#define restrict __restrict__" in the
Packit 8f70b4
   previous line.  Perhaps some future version of Sun C++ will work with
Packit 8f70b4
   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
Packit 8f70b4
#if defined __SUNPRO_CC && !defined __RESTRICT
Packit 8f70b4
# define _Restrict
Packit 8f70b4
# define __restrict__
Packit 8f70b4
#endif])
Packit 8f70b4
 case $ac_cv_c_restrict in
Packit 8f70b4
   restrict) ;;
Packit 8f70b4
   no) AC_DEFINE([restrict], []) ;;
Packit 8f70b4
   *)  AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;;
Packit 8f70b4
 esac
Packit 8f70b4
])# AC_C_RESTRICT
Packit 8f70b4
Packit 8f70b4
# gl_BIGENDIAN
Packit 8f70b4
# is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd.
Packit 8f70b4
# Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some
Packit 8f70b4
# macros invoke AC_C_BIGENDIAN with arguments.
Packit 8f70b4
AC_DEFUN([gl_BIGENDIAN],
Packit 8f70b4
[
Packit 8f70b4
  AC_C_BIGENDIAN
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# gl_CACHE_VAL_SILENT(cache-id, command-to-set-it)
Packit 8f70b4
# is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not
Packit 8f70b4
# output a spurious "(cached)" mark in the midst of other configure output.
Packit 8f70b4
# This macro should be used instead of AC_CACHE_VAL when it is not surrounded
Packit 8f70b4
# by an AC_MSG_CHECKING/AC_MSG_RESULT pair.
Packit 8f70b4
AC_DEFUN([gl_CACHE_VAL_SILENT],
Packit 8f70b4
[
Packit 8f70b4
  saved_as_echo_n="$as_echo_n"
Packit 8f70b4
  as_echo_n=':'
Packit 8f70b4
  AC_CACHE_VAL([$1], [$2])
Packit 8f70b4
  as_echo_n="$saved_as_echo_n"
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# AS_VAR_COPY was added in autoconf 2.63b
Packit 8f70b4
m4_define_default([AS_VAR_COPY],
Packit 8f70b4
[AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])
Packit 8f70b4
Packit 8f70b4
# AC_PROG_SED was added in autoconf 2.59b
Packit 8f70b4
m4_ifndef([AC_PROG_SED],
Packit 8f70b4
[AC_DEFUN([AC_PROG_SED],
Packit 8f70b4
[AC_CACHE_CHECK([for a sed that does not truncate output], ac_cv_path_SED,
Packit 8f70b4
    [dnl ac_script should not contain more than 99 commands (for HP-UX sed),
Packit 8f70b4
     dnl but more than about 7000 bytes, to catch a limit in Solaris 8 /usr/ucb/sed.
Packit 8f70b4
     ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
Packit 8f70b4
     for ac_i in 1 2 3 4 5 6 7; do
Packit 8f70b4
       ac_script="$ac_script$as_nl$ac_script"
Packit 8f70b4
     done
Packit 8f70b4
     echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed
Packit 8f70b4
     AS_UNSET([ac_script])
Packit 8f70b4
     if test -z "$SED"; then
Packit 8f70b4
       ac_path_SED_found=false
Packit 8f70b4
       _AS_PATH_WALK([], [
Packit 8f70b4
         for ac_prog in sed gsed; do
Packit 8f70b4
           for ac_exec_ext in '' $ac_executable_extensions; do
Packit 8f70b4
             ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
Packit 8f70b4
             AS_EXECUTABLE_P(["$ac_path_SED"]) || continue
Packit 8f70b4
             case `"$ac_path_SED" --version 2>&1` in
Packit 8f70b4
               *GNU*) ac_cv_path_SED=$ac_path_SED ac_path_SED_found=:;;
Packit 8f70b4
               *)
Packit 8f70b4
                 ac_count=0
Packit 8f70b4
                 _AS_ECHO_N([0123456789]) >conftest.in
Packit 8f70b4
                 while :
Packit 8f70b4
                 do
Packit 8f70b4
                   cat conftest.in conftest.in >conftest.tmp
Packit 8f70b4
                   mv conftest.tmp conftest.in
Packit 8f70b4
                   cp conftest.in conftest.nl
Packit 8f70b4
                   echo >> conftest.nl
Packit 8f70b4
                   "$ac_path_SED" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break
Packit 8f70b4
                   diff conftest.out conftest.nl >/dev/null 2>&1 || break
Packit 8f70b4
                   ac_count=`expr $ac_count + 1`
Packit 8f70b4
                   if test $ac_count -gt ${ac_path_SED_max-0}; then
Packit 8f70b4
                     # Best so far, but keep looking for better
Packit 8f70b4
                     ac_cv_path_SED=$ac_path_SED
Packit 8f70b4
                     ac_path_SED_max=$ac_count
Packit 8f70b4
                   fi
Packit 8f70b4
                   test $ac_count -gt 10 && break
Packit 8f70b4
                 done
Packit 8f70b4
                 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
Packit 8f70b4
             esac
Packit 8f70b4
             $ac_path_SED_found && break 3
Packit 8f70b4
           done
Packit 8f70b4
         done])
Packit 8f70b4
       if test -z "$ac_cv_path_SED"; then
Packit 8f70b4
         AC_ERROR([no acceptable sed could be found in \$PATH])
Packit 8f70b4
       fi
Packit 8f70b4
     else
Packit 8f70b4
       ac_cv_path_SED=$SED
Packit 8f70b4
     fi
Packit 8f70b4
    ])
Packit 8f70b4
 SED="$ac_cv_path_SED"
Packit 8f70b4
 AC_SUBST([SED])dnl
Packit 8f70b4
 rm -f conftest.sed
Packit 8f70b4
])
Packit 8f70b4
])