From: Bruno Haible Date: Sun, 16 Feb 2025 18:32:54 +0000 (+0100) Subject: strcasecmp, strncasecmp: Work around Solaris, Cygwin bug, part 3. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8fa6e6314246280a6c52f7f0a75cf2eb9d14a05;p=thirdparty%2Fgnulib.git strcasecmp, strncasecmp: Work around Solaris, Cygwin bug, part 3. * m4/strings_h.m4 (gl_STRINGS_H_DEFAULTS): Fix initializations. --- diff --git a/m4/strings_h.m4 b/m4/strings_h.m4 index f635575012..d36ff4ec02 100644 --- a/m4/strings_h.m4 +++ b/m4/strings_h.m4 @@ -64,6 +64,6 @@ AC_DEFUN([gl_STRINGS_H_DEFAULTS], HAVE_STRCASECMP=1; AC_SUBST([HAVE_STRCASECMP]) HAVE_STRNCASECMP=1; AC_SUBST([HAVE_STRNCASECMP]) HAVE_DECL_STRNCASECMP=1; AC_SUBST([HAVE_DECL_STRNCASECMP]) - REPLACE_STRCASECMP=1; AC_SUBST([REPLACE_STRCASECMP]) - REPLACE_STRNCASECMP=1; AC_SUBST([REPLACE_STRNCASECMP]) + REPLACE_STRCASECMP=0; AC_SUBST([REPLACE_STRCASECMP]) + REPLACE_STRNCASECMP=0; AC_SUBST([REPLACE_STRNCASECMP]) ])