summaryrefslogtreecommitdiff
path: root/www-client/w3m/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-02-19 11:39:43 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-02-19 11:39:43 +0000
commitfac3cfaabc3c46bf5cb7a2492197925c7c557b42 (patch)
tree2f349d3ce8993d9ac6d35958db8b9d82b8fe40cc /www-client/w3m/files
parentb24782302154e447b59c3f719970f951cd15cd38 (diff)
gentoo auto-resync : 19:02:2024 - 11:39:43
Diffstat (limited to 'www-client/w3m/files')
-rw-r--r--www-client/w3m/files/w3m-0.5.3_p20220429-clang-15-configure.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/www-client/w3m/files/w3m-0.5.3_p20220429-clang-15-configure.patch b/www-client/w3m/files/w3m-0.5.3_p20220429-clang-15-configure.patch
deleted file mode 100644
index c9543cb64955..000000000000
--- a/www-client/w3m/files/w3m-0.5.3_p20220429-clang-15-configure.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/tats/w3m/pull/248
-
-From cecac3d8a177362fc27c8a109ac23a8760e74a10 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Mon, 12 Sep 2022 18:41:28 +0100
-Subject: [PATCH] acinclude.m4: fix configure tests broken with Clang 15
- (implicit function declarations)
-
-Clang 15 makes implicit function declarations fatal by default which
-leads to some configure tests silently failing/returning
-the wrong result.
-
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/acinclude.m4
-+++ b/acinclude.m4
-@@ -904,7 +904,8 @@ AC_DEFUN([AC_W3M_SIGSETJMP],
- [AC_SUBST(HAVE_SIGSETJMP)
- AC_MSG_CHECKING(for sigsetjmp)
- AC_TRY_COMPILE(
--[#include <setjmp.h>],
-+[#include <setjmp.h>
-+ #include <stdlib.h>],
- [ jmp_buf env;
- if (sigsetjmp(env, 1) != 0) { exit(0); } siglongjmp(env, 1);],
- [have_sigsetjmp="yes"; AC_DEFINE(HAVE_SIGSETJMP)],
-