From ba582436f2f35ba34fdd636fb502a346863c82a1 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 7 Feb 2024 13:01:09 -0800 Subject: [PATCH] =?utf8?q?Assume=20=E2=80=98long=20long=E2=80=99=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * modules/strtoimax, modules/strtoumax (Depends-on): Assume the compiler supports ‘long long’. This was overlooked in the 2019-12-22 patch . --- ChangeLog | 8 ++++++++ modules/strtoimax | 2 +- modules/strtoumax | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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 -- 2.39.5