gnuplot: update to 6.0.2
[oi-userland.git] / components / shell / bash / patches / bash52-027.patch
blob9f18676f89216eceb44c4a407da5457064460592
1 BASH PATCH REPORT
2 =================
4 Bash-Release: 5.2
5 Patch-ID: bash52-027
7 Bug-Reported-by: Emanuel Haupt <ehaupt@FreeBSD.org>
8 Bug-Reference-ID: <20221001123841.27e1bfb3bf3ed58ab32ea2b5@FreeBSD.org>
9 Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2022-10/msg00000.html
11 Bug-Description:
13 The configure test for the presence of strtoimax(3) is inverted.
15 Patch (apply with `patch -p0'):
18 *** ../bash-5.2-patched/m4/strtoimax.m4 Mon Apr 11 16:31:52 2022
19 --- m4/strtoimax.m4 Tue Apr 9 11:12:36 2024
20 ***************
21 *** 30,34 ****
23 AC_MSG_RESULT($bash_cv_func_strtoimax)
24 ! if test $bash_cv_func_strtoimax = yes; then
25 AC_LIBOBJ(strtoimax)
27 --- 30,34 ----
29 AC_MSG_RESULT($bash_cv_func_strtoimax)
30 ! if test $bash_cv_func_strtoimax = no; then
31 AC_LIBOBJ(strtoimax)
33 *** ..//bash-5.2-patched/configure Fri Sep 23 10:13:22 2022
34 --- configure Tue Apr 9 11:13:21 2024
35 ***************
36 *** 20444,20448 ****
37 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $bash_cv_func_strtoimax" >&5
38 printf "%s\n" "$bash_cv_func_strtoimax" >&6; }
39 ! if test $bash_cv_func_strtoimax = yes; then
40 case " $LIBOBJS " in
41 *" strtoimax.$ac_objext "* ) ;;
42 --- 20444,20448 ----
43 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $bash_cv_func_strtoimax" >&5
44 printf "%s\n" "$bash_cv_func_strtoimax" >&6; }
45 ! if test $bash_cv_func_strtoimax = no; then
46 case " $LIBOBJS " in
47 *" strtoimax.$ac_objext "* ) ;;
49 *** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
50 --- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
51 ***************
52 *** 26,30 ****
53 looks for to find the patch level (for the sccs version string). */
55 ! #define PATCHLEVEL 26
57 #endif /* _PATCHLEVEL_H_ */
58 --- 26,30 ----
59 looks for to find the patch level (for the sccs version string). */
61 ! #define PATCHLEVEL 27
63 #endif /* _PATCHLEVEL_H_ */