1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-01-17 18:12:36 +01:00
slackware-current/source/a/bash/bash.gcc14.diff

12 lines
408 B
Diff
Raw Normal View History

Wed Aug 7 04:03:09 UTC 2024 a/bash-5.2.032-x86_64-2.txz: Rebuilt. Patched a C compatibility error with GCC 14 in the configure.ac script that was causing the printf builtin to malfunction. Thanks to elMoco for the bug report. l/qt6-6.7.2_20240610_3f005f1e-x86_64-4.txz: Rebuilt. Recompiled against abseil-cpp-20240722.0. n/curl-8.9.1-x86_64-2.txz: Rebuilt. This is a bugfix release. [PATCH] sigpipe: init the struct so that first apply ignores. Thanks to ponce. n/samba-4.20.4-x86_64-1.txz: Upgraded. xap/mozilla-firefox-128.1.0esr-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/firefox/128.1.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2024-35/ https://www.cve.org/CVERecord?id=CVE-2024-7518 https://www.cve.org/CVERecord?id=CVE-2024-7519 https://www.cve.org/CVERecord?id=CVE-2024-7520 https://www.cve.org/CVERecord?id=CVE-2024-7521 https://www.cve.org/CVERecord?id=CVE-2024-7522 https://www.cve.org/CVERecord?id=CVE-2024-7524 https://www.cve.org/CVERecord?id=CVE-2024-7525 https://www.cve.org/CVERecord?id=CVE-2024-7526 https://www.cve.org/CVERecord?id=CVE-2024-7527 https://www.cve.org/CVERecord?id=CVE-2024-7528 https://www.cve.org/CVERecord?id=CVE-2024-7529 https://www.cve.org/CVERecord?id=CVE-2024-7531 (* Security fix *) xap/mozilla-thunderbird-128.1.0esr-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/128.1.0esr/releasenotes/
2024-08-07 06:03:09 +02:00
--- ./configure.ac.orig 2022-09-23 09:12:27.000000000 -0500
+++ ./configure.ac 2024-08-06 12:28:34.813038791 -0500
@@ -885,7 +885,7 @@
[AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[#include <stdlib.h>]],
- [[long double r; char *foo, bar; r = strtold(foo, &bar);]]
+ [[long double r; char *foo, *bar; r = strtold(foo, &bar);]]
)],
[bash_cv_strtold_broken=no],[bash_cv_strtold_broken=yes])
]