Require 'restrict'.
authorBruno Haible <bruno@clisp.org>
Sun, 11 Mar 2007 23:09:09 +0000 (23:09 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 11 Mar 2007 23:09:09 +0000 (23:09 +0000)
ChangeLog
m4/mempcpy.m4

index f0e6243..841208c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-03-11  Bruno Haible  <bruno@clisp.org>
 
+       * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
+
+2007-03-11  Bruno Haible  <bruno@clisp.org>
+
        * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
 
 2007-03-11  Bruno Haible  <bruno@clisp.org>
index e2b39d0..9e854e8 100644 (file)
@@ -1,4 +1,4 @@
-# mempcpy.m4 serial 6
+# mempcpy.m4 serial 7
 dnl Copyright (C) 2003, 2004, 2006, 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_MEMPCPY],
   dnl Persuade glibc <string.h> to declare mempcpy().
   AC_REQUIRE([AC_GNU_SOURCE])
 
+  dnl The mempcpy() declaration in lib/string_.h uses 'restrict'.
+  AC_REQUIRE([AC_C_RESTRICT])
+
   AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
   AC_REPLACE_FUNCS(mempcpy)
   if test $ac_cv_func_mempcpy = no; then