strtoumax: fix another typo in previous commit
authorEric Blake <eblake@redhat.com>
Thu, 10 Oct 2013 19:34:46 +0000 (13:34 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 10 Oct 2013 19:35:19 +0000 (13:35 -0600)
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>
modules/strtoimax
modules/strtoumax

index 5b0ea91..36a96de 100644 (file)
@@ -14,7 +14,7 @@ strtoll         [{ test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1;
 
 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
index 694184b..725f523 100644 (file)
@@ -15,7 +15,7 @@ strtoull        [{ test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1;
 
 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