]> git.ipfire.org Git - thirdparty/bash.git/commitdiff
Bash-5.2 patch 27: fix autoconf test for strtoimax
authorChet Ramey <chet.ramey@case.edu>
Thu, 1 Aug 2024 15:31:51 +0000 (11:31 -0400)
committerChet Ramey <chet.ramey@case.edu>
Thu, 1 Aug 2024 15:31:51 +0000 (11:31 -0400)
configure
m4/strtoimax.m4
patchlevel.h

index 47313753e71736dad97bd58cb46351cf141d395a..07d7c2f6f0b8a56c99a50301d6401c18adb16ef4 100755 (executable)
--- a/configure
+++ b/configure
@@ -20443,7 +20443,7 @@ fi
 
 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $bash_cv_func_strtoimax" >&5
 printf "%s\n" "$bash_cv_func_strtoimax" >&6; }
-if test $bash_cv_func_strtoimax = yes; then
+if test $bash_cv_func_strtoimax = no; then
 case " $LIBOBJS " in
   *" strtoimax.$ac_objext "* ) ;;
   *) LIBOBJS="$LIBOBJS strtoimax.$ac_objext"
index 309857235fea8053cfdb0b31a26c154f8bd46b47..d311c9d058adc15f6ccc842db140263dee224235 100644 (file)
@@ -29,7 +29,7 @@ AC_CACHE_VAL(bash_cv_func_strtoimax,
   fi
 ])
 AC_MSG_RESULT($bash_cv_func_strtoimax)
-if test $bash_cv_func_strtoimax = yes; then
+if test $bash_cv_func_strtoimax = no; then
 AC_LIBOBJ(strtoimax)
 fi
 ])
index e4814212403e01fa9f9ea9c21c1657bb5e7c6fe9..b534802b940d4d72d8a4817f8293132adacfbd40 100644 (file)
@@ -25,6 +25,6 @@
    regexp `^#define[   ]*PATCHLEVEL', since that's what support/mkversion.sh
    looks for to find the patch level (for the sccs version string). */
 
-#define PATCHLEVEL 26
+#define PATCHLEVEL 27
 
 #endif /* _PATCHLEVEL_H_ */