changeset 37202:143cea48b4d3

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 8660fad5c0ba
children 2f0a7cf7ea66
files modules/strtoimax modules/strtoumax
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/modules/strtoimax	Thu Oct 10 12:24:59 2013 -0600
+++ b/modules/strtoimax	Thu Oct 10 13:34:46 2013 -0600
@@ -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	Thu Oct 10 12:24:59 2013 -0600
+++ b/modules/strtoumax	Thu Oct 10 13:34:46 2013 -0600
@@ -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