From: Paul Eggert Date: Thu, 10 Oct 2013 16:15:18 +0000 (-0700) Subject: strtoumax: port to Solaris 8 X-Git-Tag: v0.1~20 X-Git-Url: http://erislabs.net/gitweb/?p=gnulib.git;a=commitdiff_plain;h=c1cd34b9fb71cfb44873aabe0957c24c234c4677 strtoumax: port to Solaris 8 This problem was introduced in the recent HP-UX patch. Reported by Tom G. Christensen in . * modules/strtoumax (Depends-on): Test HAVE_STRTOUMAX and REPLACE_STRTOUMAX rather than ac_cv_func_strtoumax. --- diff --git a/ChangeLog b/ChangeLog index b176e1d2f..3f6bf0787 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2013-10-10 Paul Eggert + + strtoumax: port to Solaris 8 + This problem was introduced in the recent HP-UX patch. + Reported by Tom G. Christensen in + . + * modules/strtoumax (Depends-on): Test HAVE_STRTOUMAX + and REPLACE_STRTOUMAX rather than ac_cv_func_strtoumax. + 2013-10-09 Paul Eggert strtoimax, strtoumax: port to HP-UX 11.11 diff --git a/modules/strtoumax b/modules/strtoumax index 1d2a15a67..ba6ec11e5 100644 --- a/modules/strtoumax +++ b/modules/strtoumax @@ -9,9 +9,9 @@ m4/strtoumax.m4 Depends-on: inttypes-incomplete -verify [test $ac_cv_func_strtoumax = no] -stdint [test $ac_cv_func_strtoumax = no] -strtoull [test $ac_cv_func_strtoumax = no && test $ac_cv_type_unsigned_long_long_int = yes] +verify [test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1] +stdint [test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1] +strtoull [{ test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; } && test $ac_cv_type_unsigned_long_long_int = yes] configure.ac: gl_FUNC_STRTOUMAX