From: Paul Eggert Date: Wed, 7 Feb 2024 21:01:09 +0000 (-0800) Subject: Assume ‘long long’ support X-Git-Tag: v1.0~455 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=ba582436f2f35ba34fdd636fb502a346863c82a1;p=gnulib.git Assume ‘long long’ support * modules/strtoimax, modules/strtoumax (Depends-on): Assume the compiler supports ‘long long’. This was overlooked in the 2019-12-22 patch . --- diff --git a/ChangeLog b/ChangeLog index 0f1fcb1b4a..617b4dde10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2024-02-07 Paul Eggert + + Assume ‘long long’ support + * modules/strtoimax, modules/strtoumax (Depends-on): + Assume the compiler supports ‘long long’. + This was overlooked in the 2019-12-22 patch + . + 2024-02-07 Bruno Haible nstrftime: Fix typo in documentation. diff --git a/modules/strtoimax b/modules/strtoimax index 942fb55a18..8acb8e2806 100644 --- a/modules/strtoimax +++ b/modules/strtoimax @@ -9,7 +9,7 @@ Depends-on: inttypes-incomplete assert-h [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1] stdint [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1] -strtoll [{ test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; } && test $ac_cv_type_long_long_int = yes] +strtoll [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1] configure.ac: gl_FUNC_STRTOIMAX diff --git a/modules/strtoumax b/modules/strtoumax index 5dfdd65ea2..8b9cad1fa3 100644 --- a/modules/strtoumax +++ b/modules/strtoumax @@ -10,7 +10,7 @@ Depends-on: inttypes-incomplete assert-h [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1] stdint [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1] -strtoull [{ test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; } && test $ac_cv_type_unsigned_long_long_int = yes] +strtoull [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1] configure.ac: gl_FUNC_STRTOUMAX