changeset 17522:87fe74e42df8

strtoumax: fix another typo in previous commit I missed one in the last commit... * modules/strtoumax (configure.ac): Fix typo. * modules/strtoimax (configure.ac): Likewise. Signed-off-by: Eric Blake <eblake@redhat.com>
author Eric Blake <eblake@redhat.com>
date Thu, 10 Oct 2013 13:34:46 -0600
parents aca7f4376f8c
children 0773921c2bac
files modules/strtoimax modules/strtoumax
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/modules/strtoimax
+++ b/modules/strtoimax
@@ -14,7 +14,7 @@
 
 configure.ac:
 gl_FUNC_STRTOIMAX
-if test $HAVE_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; then
+if test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; then
   AC_LIBOBJ([strtoimax])
   gl_PREREQ_STRTOIMAX
 fi
--- a/modules/strtoumax
+++ b/modules/strtoumax
@@ -15,7 +15,7 @@
 
 configure.ac:
 gl_FUNC_STRTOUMAX
-if test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then
+if test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then
   AC_LIBOBJ([strtoumax])
   gl_PREREQ_STRTOUMAX
 fi