From: Bruno Haible Date: Sun, 11 May 2008 10:42:47 +0000 (+0200) Subject: Add prerequisites for using 'inline'. X-Git-Tag: v0.1~7411 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=88672a9b0b55ebda6747c38e9cb82b1ae75a017d;p=gnulib.git Add prerequisites for using 'inline'. --- diff --git a/ChangeLog b/ChangeLog index 995007906..e59b5c0c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-11 Bruno Haible + + * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE. + * m4/sha512.m4 (gl_SHA512): Likewise. + 2008-05-11 Jim Meyering New modules: crypto/sha256, crypto/sha512 (from coreutils) diff --git a/m4/sha256.m4 b/m4/sha256.m4 index 54b15e8da..d8d5d27dc 100644 --- a/m4/sha256.m4 +++ b/m4/sha256.m4 @@ -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 @@ AC_DEFUN([gl_SHA256], dnl Prerequisites of lib/sha256.c. AC_REQUIRE([AC_C_BIGENDIAN]) + AC_REQUIRE([AC_C_INLINE]) ]) diff --git a/m4/sha512.m4 b/m4/sha512.m4 index 888d50df6..1b1e899cc 100644 --- a/m4/sha512.m4 +++ b/m4/sha512.m4 @@ -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 @@ AC_DEFUN([gl_SHA512], dnl Prerequisites of lib/sha512.c. AC_REQUIRE([AC_C_BIGENDIAN]) + AC_REQUIRE([AC_C_INLINE]) ])