From: Hans-Peter Nilsson Date: Fri, 23 May 2014 02:06:40 +0000 (+0000) Subject: configure.ac [...] (HAVE_STRNLEN, [...]): Define. X-Git-Tag: releases/gcc-5.1.0~7348 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ebfedee6d72292d8e6770e5de05d6290a94ab098;p=thirdparty%2Fgcc.git configure.ac [...] (HAVE_STRNLEN, [...]): Define. * configure.ac [with_newlib] (HAVE_STRNLEN, HAVE_STRNDUP): Define. * configure: Regenerate. From-SVN: r210841 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 6fe0974098de..42177735644e 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2014-05-23 Hans-Peter Nilsson + + * configure.ac [with_newlib] (HAVE_STRNLEN, HAVE_STRNDUP): Define. + * configure: Regenerate. + 2014-05-23 Janne Blomqvist PR libfortran/60324 diff --git a/libgfortran/configure b/libgfortran/configure index d46a6e2d7960..9841ebc0ae32 100755 --- a/libgfortran/configure +++ b/libgfortran/configure @@ -16476,6 +16476,12 @@ $as_echo "#define HAVE_LOCALTIME_R 1" >>confdefs.h $as_echo "#define HAVE_GMTIME_R 1" >>confdefs.h +$as_echo "#define HAVE_STRNLEN 1" >>confdefs.h + + +$as_echo "#define HAVE_STRNDUP 1" >>confdefs.h + + # At some point, we should differentiate between architectures # like x86, which have long double versions, and alpha/powerpc/etc., # which don't. For the time being, punt. diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac index fb29c147666f..ab4c497e5f3b 100644 --- a/libgfortran/configure.ac +++ b/libgfortran/configure.ac @@ -273,6 +273,8 @@ if test "x${with_newlib}" = "xyes"; then AC_DEFINE(HAVE_VSNPRINTF, 1, [Define if you have vsnprintf.]) AC_DEFINE(HAVE_LOCALTIME_R, 1, [Define if you have localtime_r.]) AC_DEFINE(HAVE_GMTIME_R, 1, [Define if you have gmtime_r.]) + AC_DEFINE(HAVE_STRNLEN, 1, [Define if you have strnlen.]) + AC_DEFINE(HAVE_STRNDUP, 1, [Define if you have strndup.]) # At some point, we should differentiate between architectures # like x86, which have long double versions, and alpha/powerpc/etc.,