Bash-5.2 patch 27: fix autoconf test for strtoimax

This commit is contained in:
Chet Ramey
2024-08-01 11:31:51 -04:00
parent f3b6bd1945
commit da16dd1e74
3 changed files with 3 additions and 3 deletions
Vendored
+1 -1
View File
@@ -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"
+1 -1
View 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
])
+1 -1
View 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_ */