diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-10-07 22:26:14 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-10-15 21:33:37 +0200 |
commit | 8b47d1aa4f2c87e2293fad2aed57ad9102226db7 (patch) | |
tree | 9166c85afe4b2640a05b6695431f4abf36442459 /sys-apps | |
parent | net-libs/libpcap: remove unused patch (diff) | |
download | gentoo-8b47d1aa4f2c87e2293fad2aed57ad9102226db7.tar.gz gentoo-8b47d1aa4f2c87e2293fad2aed57ad9102226db7.tar.bz2 gentoo-8b47d1aa4f2c87e2293fad2aed57ad9102226db7.zip |
sys-apps/dbus: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/27681
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/dbus/files/dbus-1.14.0-clang-15-configure.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-apps/dbus/files/dbus-1.14.0-clang-15-configure.patch b/sys-apps/dbus/files/dbus-1.14.0-clang-15-configure.patch deleted file mode 100644 index 821279c50ee9..000000000000 --- a/sys-apps/dbus/files/dbus-1.14.0-clang-15-configure.patch +++ /dev/null @@ -1,26 +0,0 @@ -https://gitlab.freedesktop.org/dbus/dbus/-/merge_requests/339 - -From 88c96ff6a351758cb7c69a25e3a8464b5164a19c Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Mon, 12 Sep 2022 18:37:35 +0100 -Subject: [PATCH] configure.ac: 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/configure.ac -+++ b/configure.ac -@@ -613,7 +613,8 @@ AS_IF([test -n "$dbus_va_copy_func"], - AC_CACHE_CHECK([whether $CC knows __sync_sub_and_fetch()], - dbus_cv_sync_sub_and_fetch, - [AC_LINK_IFELSE([ -- AC_LANG_PROGRAM([[]], [[int a = 4; int b = __sync_sub_and_fetch(&a, 4); exit(b); ]])], -+ AC_LANG_PROGRAM([[]], [[#include <stdlib.h> -+ int a = 4; int b = __sync_sub_and_fetch(&a, 4); exit(b); ]])], - [dbus_cv_sync_sub_and_fetch=yes], - [dbus_cv_sync_sub_and_fetch=no]) - ]) -GitLab |