]> Savannah Git Hosting - gnulib.git/commitdiff
Assume ‘long long’ support
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 7 Feb 2024 21:01:09 +0000 (13:01 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 7 Feb 2024 21:01:51 +0000 (13:01 -0800)
* modules/strtoimax, modules/strtoumax (Depends-on):
Assume the compiler supports ‘long long’.
This was overlooked in the 2019-12-22 patch
<https://lists.gnu.org/r/bug-gnulib/2019-12/msg00190.html>.

ChangeLog
modules/strtoimax
modules/strtoumax

index 0f1fcb1b4a8d0d0ac4aa7291980dabed6c0f8aab..617b4dde10644643ad17c75457570966ad28182c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-02-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       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
+       <https://lists.gnu.org/r/bug-gnulib/2019-12/msg00190.html>.
+
 2024-02-07  Bruno Haible  <bruno@clisp.org>
 
        nstrftime: Fix typo in documentation.
index 942fb55a18ddb7aca0e2715569f1cefb879b7c00..8acb8e2806ef03c568a33484e97f1c5756e00a58 100644 (file)
@@ -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
index 5dfdd65ea28f752688440e789eaad4f43cd31fe7..8b9cad1fa36351b048c4d96038afc2433ebe1166 100644 (file)
@@ -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