Avoid compilation warning on MinGW in xstrndup
authorEli Zaretskii <eliz@gnu.org>
Wed, 31 May 2017 06:44:08 +0000 (09:44 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 31 May 2017 06:44:08 +0000 (09:44 +0300)
libiberty/ChangeLog:

2017-05-31  DJ Delorie  <dj@redhat.com>

* configure.ac (strnlen): Add to AC_CHECK_DECLS.
* configure: Likewise.
* config.in: Add HACE_DECL_STRNLEN.

libiberty/ChangeLog
libiberty/config.in
libiberty/configure
libiberty/configure.ac

index 2dd3ca7203c2c2dc9303ca87b640f4a3f398d000..4b19fef64f9c62ba7c158008d877e9a8beb849bd 100644 (file)
@@ -1,3 +1,9 @@
+2017-05-31  DJ Delorie  <dj@redhat.com>
+
+       * configure.ac (strnlen): Add to AC_CHECK_DECLS.
+       * configure: Likewise.
+       * config.in: Add HACE_DECL_STRNLEN.
+
 2017-05-31  Eli Zaretskii  <eliz@gnu.org>
 
        * waitpid.c (wait) [__MINGW32__]: Define as a macro
index 1ff50c67f600a6399f40c69ca942d89d5c3a83a3..66c78e816840eb2aced089dc7f913b8b09de101f 100644 (file)
    don't. */
 #undef HAVE_DECL_SNPRINTF
 
+/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
+   don't. */
+#undef HAVE_DECL_STRNLEN
+
 /* Define to 1 if you have the declaration of `strtol', and to 0 if you don't.
    */
 #undef HAVE_DECL_STRTOL
index 868793558f06d6c46c0b6978bebe5e59d67321a8..ccadfaa822404efc833b15c9b7abd5443d5a97ba 100755 (executable)
@@ -5864,6 +5864,16 @@ fi
 cat >>confdefs.h <<_ACEOF
 #define HAVE_DECL_STRTOULL $ac_have_decl
 _ACEOF
+ac_fn_c_check_decl "$LINENO" "strnlen" "ac_cv_have_decl_strnlen" "$ac_includes_default"
+if test "x$ac_cv_have_decl_strnlen" = x""yes; then :
+  ac_have_decl=1
+else
+  ac_have_decl=0
+fi
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_DECL_STRNLEN $ac_have_decl
+_ACEOF
 
 
 $as_echo "#define HAVE_SYS_ERRLIST 1" >>confdefs.h
@@ -7003,6 +7013,17 @@ fi
 
 cat >>confdefs.h <<_ACEOF
 #define HAVE_DECL_STRVERSCMP $ac_have_decl
+_ACEOF
+
+  ac_fn_c_check_decl "$LINENO" "strnlen" "ac_cv_have_decl_strnlen" "$ac_includes_default"
+if test "x$ac_cv_have_decl_strnlen" = x""yes; then :
+  ac_have_decl=1
+else
+  ac_have_decl=0
+fi
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_DECL_STRNLEN $ac_have_decl
 _ACEOF
 
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether canonicalize_file_name must be declared" >&5
index 1aa0c7c7f4237ca95187473cd406e66849553db0..6917cfaf4fbdf2954b269515e510639ce6081c01 100644 (file)
@@ -416,7 +416,7 @@ if test "x" = "y"; then
     table times tmpnam \
     vasprintf vfprintf vprintf vsprintf \
     wait3 wait4 waitpid)
-  AC_CHECK_DECLS([basename(char *), ffs, asprintf, vasprintf, snprintf, vsnprintf, strtol, strtoul, strtoll, strtoull])
+  AC_CHECK_DECLS([basename(char *), ffs, asprintf, vasprintf, snprintf, vsnprintf, strtol, strtoul, strtoll, strtoull, strnlen])
   AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
   AC_DEFINE(HAVE_SYS_NERR,    1, [Define if you have the sys_nerr variable.])
   AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
@@ -689,6 +689,7 @@ if test -z "${setobjs}"; then
   AC_CHECK_DECLS([calloc, getenv, getopt, malloc, realloc, sbrk])
   AC_CHECK_DECLS([strtol, strtoul, strtoll, strtoull])
   AC_CHECK_DECLS([strverscmp])
+  AC_CHECK_DECLS([strnlen])
   libiberty_NEED_DECLARATION(canonicalize_file_name)
 fi
 
This page took 0.033638 seconds and 4 git commands to generate.