changeset 10059:3eec8d4f0623

Add prerequisites for using 'inline'.
author Bruno Haible <bruno@clisp.org>
date Sun, 11 May 2008 12:42:47 +0200
parents e65afb893b33
children 0450892e5ca8
files ChangeLog m4/sha256.m4 m4/sha512.m4
diffstat 3 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 11 09:05:36 2008 +0200
+++ b/ChangeLog	Sun May 11 12:42:47 2008 +0200
@@ -1,3 +1,8 @@
+2008-05-11  Bruno Haible  <bruno@clisp.org>
+
+	* m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
+	* m4/sha512.m4 (gl_SHA512): Likewise.
+
 2008-05-11  Jim Meyering  <meyering@redhat.com>
 
 	New modules: crypto/sha256, crypto/sha512 (from coreutils)
--- a/m4/sha256.m4	Sun May 11 09:05:36 2008 +0200
+++ b/m4/sha256.m4	Sun May 11 12:42:47 2008 +0200
@@ -1,4 +1,4 @@
-# sha256.m4 serial 2
+# sha256.m4 serial 3
 dnl Copyright (C) 2005, 2008 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -10,4 +10,5 @@
 
   dnl Prerequisites of lib/sha256.c.
   AC_REQUIRE([AC_C_BIGENDIAN])
+  AC_REQUIRE([AC_C_INLINE])
 ])
--- a/m4/sha512.m4	Sun May 11 09:05:36 2008 +0200
+++ b/m4/sha512.m4	Sun May 11 12:42:47 2008 +0200
@@ -1,4 +1,4 @@
-# sha512.m4 serial 3
+# sha512.m4 serial 4
 dnl Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -10,4 +10,5 @@
 
   dnl Prerequisites of lib/sha512.c.
   AC_REQUIRE([AC_C_BIGENDIAN])
+  AC_REQUIRE([AC_C_INLINE])
 ])