# HG changeset patch # User Eric Blake # Date 1381433686 21600 # Node ID 143cea48b4d3652b473b3547b13ccb3b3b9b0465 # Parent 8660fad5c0ba02302f3b004746db72d0293cd67c 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 diff -r 8660fad5c0ba -r 143cea48b4d3 modules/strtoimax --- 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 diff -r 8660fad5c0ba -r 143cea48b4d3 modules/strtoumax --- 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