From: Bruno Haible Date: Sun, 13 May 2007 21:57:40 +0000 (+0000) Subject: Ensure AC_C_RESTRICT is invoked. X-Git-Tag: cvs-readonly~404 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=c9b62cc067d130a354c1b4e22ca59771d2fa0c93;p=gnulib.git Ensure AC_C_RESTRICT is invoked. --- diff --git a/ChangeLog b/ChangeLog index efaf8a112..cb620489c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2007-05-13 Bruno Haible + * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT. + * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise. + * strsep.m4 (gl_FUNC_STRSEP): Likewise. + * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise. + (gl_PREREQ_STRTOK_R): Don't require it here. + +2007-05-13 Bruno Haible + * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed when used in C++ mode. diff --git a/m4/stpcpy.m4 b/m4/stpcpy.m4 index d42196e3d..c48aa9c3a 100644 --- a/m4/stpcpy.m4 +++ b/m4/stpcpy.m4 @@ -1,4 +1,4 @@ -# stpcpy.m4 serial 3 +# stpcpy.m4 serial 4 dnl Copyright (C) 2002, 2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -9,6 +9,9 @@ AC_DEFUN([gl_FUNC_STPCPY], dnl Persuade glibc to declare stpcpy(). AC_REQUIRE([AC_GNU_SOURCE]) + dnl The stpcpy() declaration in lib/string_.h uses 'restrict'. + AC_REQUIRE([AC_C_RESTRICT]) + AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) AC_REPLACE_FUNCS(stpcpy) if test $ac_cv_func_stpcpy = no; then diff --git a/m4/stpncpy.m4 b/m4/stpncpy.m4 index 7e15186ca..aad037550 100644 --- a/m4/stpncpy.m4 +++ b/m4/stpncpy.m4 @@ -1,4 +1,4 @@ -# stpncpy.m4 serial 6 +# stpncpy.m4 serial 7 dnl Copyright (C) 2002-2003, 2005-2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -9,6 +9,9 @@ AC_DEFUN([gl_FUNC_STPNCPY], dnl Persuade glibc to declare stpncpy(). AC_REQUIRE([AC_GNU_SOURCE]) + dnl The stpncpy() declaration in lib/string_.h uses 'restrict'. + AC_REQUIRE([AC_C_RESTRICT]) + AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) dnl Both glibc and AIX (4.3.3, 5.1) have an stpncpy() function diff --git a/m4/strsep.m4 b/m4/strsep.m4 index 6073adb38..0abbf089c 100644 --- a/m4/strsep.m4 +++ b/m4/strsep.m4 @@ -1,4 +1,4 @@ -# strsep.m4 serial 5 +# strsep.m4 serial 6 dnl Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -9,6 +9,9 @@ AC_DEFUN([gl_FUNC_STRSEP], dnl Persuade glibc to declare strsep(). AC_REQUIRE([AC_GNU_SOURCE]) + dnl The strsep() declaration in lib/string_.h uses 'restrict'. + AC_REQUIRE([AC_C_RESTRICT]) + AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) AC_REPLACE_FUNCS(strsep) if test $ac_cv_func_strsep = no; then diff --git a/m4/strtok_r.m4 b/m4/strtok_r.m4 index a354aab4e..03cff0941 100644 --- a/m4/strtok_r.m4 +++ b/m4/strtok_r.m4 @@ -1,4 +1,4 @@ -# strtok_r.m4 serial 5 +# strtok_r.m4 serial 6 dnl Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -6,6 +6,9 @@ dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_STRTOK_R], [ + dnl The strtok_r() declaration in lib/string_.h uses 'restrict'. + AC_REQUIRE([AC_C_RESTRICT]) + AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) AC_REPLACE_FUNCS(strtok_r) AC_CHECK_DECLS_ONCE(strtok_r) @@ -17,5 +20,5 @@ AC_DEFUN([gl_FUNC_STRTOK_R], # Prerequisites of lib/strtok_r.c. AC_DEFUN([gl_PREREQ_STRTOK_R], [ - AC_REQUIRE([AC_C_RESTRICT]) + : ])