]> Savannah Git Hosting - gnulib.git/commitdiff
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 5b0ea91b805013fa29c005d13aa3e800d6c58ce0..36a96de4b5a48bfcbd841816adca849b2d27d38f 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 694184b21951e301357aaf3469513637eef6b64c..725f523c25adc16c268b3b25a732b04ceb8dc7fd 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