mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
f2ee5ebc09
a/bash-5.2.037-x86_64-1.txz: Upgraded. a/dracut-103-x86_64-3.txz: Rebuilt. Don't search for systemd services. Thanks to LuckyCyborg. d/git-2.46.2-x86_64-1.txz: Upgraded. kde/krita-5.2.5-x86_64-1.txz: Upgraded. l/gtk4-4.16.2-x86_64-1.txz: Upgraded. l/harfbuzz-10.0.0-x86_64-1.txz: Upgraded. n/netatalk-3.2.10-x86_64-1.txz: Upgraded. xap/mpv-0.39.0-x86_64-1.txz: Upgraded.
80 lines
2.1 KiB
Text
80 lines
2.1 KiB
Text
BASH PATCH REPORT
|
|
=================
|
|
|
|
Bash-Release: 5.2
|
|
Patch-ID: bash52-033
|
|
|
|
Bug-Reported-by: Florian Weimer <fweimer@redhat.com>
|
|
Bug-Reference-ID: <87leasmvoo.fsf@oldenburg.str.redhat.com>
|
|
Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2023-11/msg00104.html
|
|
|
|
Bug-Description:
|
|
|
|
A typo in the autoconf test for strtold causes false negatives for strtold
|
|
being available and working when compiled with gcc-14.
|
|
|
|
Patch (apply with `patch -p0'):
|
|
|
|
*** ../bash-5.2-patched/configure.ac Fri Aug 11 14:52:31 2023
|
|
--- configure.ac Tue Nov 21 12:00:25 2023
|
|
***************
|
|
*** 899,903 ****
|
|
[AC_LANG_PROGRAM(
|
|
[[#include <stdlib.h>]],
|
|
! [[long double r; char *foo, bar; r = strtold(foo, &bar);]]
|
|
)],
|
|
[bash_cv_strtold_broken=no],[bash_cv_strtold_broken=yes])
|
|
--- 900,904 ----
|
|
[AC_LANG_PROGRAM(
|
|
[[#include <stdlib.h>]],
|
|
! [[long double r; char *foo, *bar; r = strtold(foo, &bar);]]
|
|
)],
|
|
[bash_cv_strtold_broken=no],[bash_cv_strtold_broken=yes])
|
|
|
|
*** ../bash-5.2-patched/configure Fri Aug 18 16:27:53 2023
|
|
--- configure Tue Nov 21 12:00:30 2023
|
|
***************
|
|
*** 15923,15927 ****
|
|
main (void)
|
|
{
|
|
! long double r; char *foo, bar; r = strtold(foo, &bar);
|
|
|
|
;
|
|
--- 15932,15936 ----
|
|
main (void)
|
|
{
|
|
! long double r; char *foo, *bar; r = strtold(foo, &bar);
|
|
|
|
;
|
|
|
|
*** ../bash-5.2-patched/builtins/printf.def Fri Jun 24 10:09:50 2022
|
|
--- builtins/printf.def Tue Aug 13 10:36:55 2024
|
|
***************
|
|
*** 710,714 ****
|
|
|
|
p = getfloatmax ();
|
|
! f = mklong (start, "L", 1);
|
|
PF (f, p);
|
|
}
|
|
--- 710,714 ----
|
|
|
|
p = getfloatmax ();
|
|
! f = mklong (start, FLOATMAX_CONV, USE_LONG_DOUBLE);
|
|
PF (f, p);
|
|
}
|
|
|
|
*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
|
|
--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
|
|
***************
|
|
*** 26,30 ****
|
|
looks for to find the patch level (for the sccs version string). */
|
|
|
|
! #define PATCHLEVEL 32
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|
|
--- 26,30 ----
|
|
looks for to find the patch level (for the sccs version string). */
|
|
|
|
! #define PATCHLEVEL 33
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|