1 # Configure a replacement for <strings.h>.
4 # Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc.
5 # This file is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
9 AC_DEFUN_ONCE([gl_STRINGS_H],
11 dnl Ensure to expand the default settings once only, before all statements
12 dnl that occur in other macros.
13 AC_REQUIRE([gl_STRINGS_H_DEFAULTS])
15 gl_CHECK_NEXT_HEADERS([strings.h])
16 if test $ac_cv_header_strings_h = yes; then
21 AC_SUBST([HAVE_STRINGS_H])
23 dnl Check for declarations of anything we want to poison if the
24 dnl corresponding gnulib module is not in use.
25 gl_WARN_ON_USE_PREPARE([[
26 /* Minix 3.1.8 has a bug: <sys/types.h> must be included before
28 #include <sys/types.h>
30 ]], [ffs strcasecmp strncasecmp])
33 # gl_STRINGS_MODULE_INDICATOR([modulename])
34 # sets the shell variable that indicates the presence of the given module
35 # to a C preprocessor expression that will evaluate to 1.
36 # This macro invocation must not occur in macros that are AC_REQUIREd.
37 AC_DEFUN([gl_STRINGS_MODULE_INDICATOR],
39 dnl Ensure to expand the default settings once only.
40 gl_STRINGS_H_REQUIRE_DEFAULTS
41 gl_MODULE_INDICATOR_SET_VARIABLE([$1])
44 # Initializes the default values for AC_SUBSTed shell variables.
45 # This macro must not be AC_REQUIREd. It must only be invoked, and only
46 # outside of macros or in macros that are not AC_REQUIREd.
47 AC_DEFUN([gl_STRINGS_H_REQUIRE_DEFAULTS],
49 m4_defun(GL_MODULE_INDICATOR_PREFIX[_STRINGS_H_MODULE_INDICATOR_DEFAULTS], [
50 gl_MODULE_INDICATOR_INIT_VARIABLE([GNULIB_FFS])
52 m4_require(GL_MODULE_INDICATOR_PREFIX[_STRINGS_H_MODULE_INDICATOR_DEFAULTS])
53 AC_REQUIRE([gl_STRINGS_H_DEFAULTS])
56 AC_DEFUN([gl_STRINGS_H_DEFAULTS],
58 dnl Assume proper GNU behavior unless another module says otherwise.
59 HAVE_FFS=1; AC_SUBST([HAVE_FFS])
60 HAVE_STRCASECMP=1; AC_SUBST([HAVE_STRCASECMP])
61 HAVE_DECL_STRNCASECMP=1; AC_SUBST([HAVE_DECL_STRNCASECMP])