summaryrefslogtreecommitdiff
path: root/net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2025-08-23 20:44:37 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2025-08-23 20:44:37 -0400
commite6625a3649b5751c517b9c2c5197dc9f919df1f0 (patch)
tree58da445ea5c8cca1e816c3612d7894f397853808 /net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch
parent05d7e0dbcee3eb96d7a1ad50079b3f0a6e02fcf1 (diff)
downloadgentoo-overlay-e6625a3649b5751c517b9c2c5197dc9f919df1f0.tar.xz
gentoo-overlay-e6625a3649b5751c517b9c2c5197dc9f919df1f0.zip
net-mail/notmuch: sync ::gentooHEADmaster
Diffstat (limited to 'net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch')
-rw-r--r--net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch b/net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch
deleted file mode 100644
index 42c1083..0000000
--- a/net-mail/notmuch/files/notmuch-0.37-configure-clang16.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://bugs.gentoo.org/879739
-https://nmbug.notmuchmail.org/nmweb/show/20221202191908.848227-1-qsx%40chaotikum.eu
-
-Probe for strcasestr using the C++ compiler
-
-The C++ compiler may define _GNU_SOURCE, causing <string.h> to
-declare strcasestr, while the C compiler does not. As a result,
-the probe may fail, resulting in an incompatible declaration
-of strcasestr in compat/compat.h.
-
-Upstream discussion:
-
- [PATCH] compat/strcasestr: Include correct header file
- <https://nmbug.notmuchmail.org/nmweb/show/20221202191908.848227-1-qsx%40chaotikum.eu>
-
---- a/compat/have_strcasestr.c
-+++ b/compat/have_strcasestr.c
-@@ -1,4 +1,5 @@
- #define _GNU_SOURCE
-+#include <string.h>
- #include <strings.h>
-
- int
-