commit:     cd135337b386ce8a9276a0cd47de8e2a9c5f6871
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Jan  3 15:28:31 2025 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan  4 22:47:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd135337

app-shells/bash: remove unused patch

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../files/bash-5.2_p21-configure-strtold.patch     | 32 ----------------------
 1 file changed, 32 deletions(-)

diff --git a/app-shells/bash/files/bash-5.2_p21-configure-strtold.patch 
b/app-shells/bash/files/bash-5.2_p21-configure-strtold.patch
deleted file mode 100644
index 51e9a19daebb..000000000000
--- a/app-shells/bash/files/bash-5.2_p21-configure-strtold.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-https://src.fedoraproject.org/rpms/bash/blob/bd5ac20b134f2936c54245fc83a8e70207d3e07e/f/bash-configure-c99-2.patch
-
-Another C compatibility issue: char ** and char * are distinct types,
-and strtold expects the former for its second argument.
-
-Submitted upstream:
-
-  <https://lists.gnu.org/archive/html/bug-bash/2023-11/msg00104.html>
-
---- configure.ac
-+++ configure.ac
-@@ -885,7 +885,7 @@ AC_CHECK_DECLS([strtold], [
-       [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])
-         ]
-
---- configure
-+++ configure
-@@ -15676,7 +15676,7 @@ else $as_nop
- int
- main (void)
- {
--long double r; char *foo, bar; r = strtold(foo, &bar);
-+long double r; char *foo, *bar; r = strtold(foo, &bar);
- 
-   ;
-   return 0;

Reply via email to