# HG changeset patch # User Bruno Haible # Date 1210502567 -7200 # Node ID 3eec8d4f06232cb900021ecde2d50fdf2b7ff113 # Parent e65afb893b33d95d93739d1a952440f9d6f41909 Add prerequisites for using 'inline'. diff -r e65afb893b33 -r 3eec8d4f0623 ChangeLog --- 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 + + * 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 -r e65afb893b33 -r 3eec8d4f0623 m4/sha256.m4 --- 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]) ]) diff -r e65afb893b33 -r 3eec8d4f0623 m4/sha512.m4 --- 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]) ])