diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-07-11 13:33:56 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-07-11 16:42:54 +0200 |
commit | dfdb0ecc1aa82de108a760effb9bd1e483062335 (patch) | |
tree | fe733583099e3b669d7d14c1ba32a4b16b14785b /mate-base | |
parent | app-admin/fluentd: remove unused file (diff) | |
download | gentoo-dfdb0ecc1aa82de108a760effb9bd1e483062335.tar.gz gentoo-dfdb0ecc1aa82de108a760effb9bd1e483062335.tar.bz2 gentoo-dfdb0ecc1aa82de108a760effb9bd1e483062335.zip |
mate-base/caja: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/21598
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'mate-base')
-rw-r--r-- | mate-base/caja/files/caja-1.24.0-fix-selinux-automagic-dep.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/mate-base/caja/files/caja-1.24.0-fix-selinux-automagic-dep.patch b/mate-base/caja/files/caja-1.24.0-fix-selinux-automagic-dep.patch deleted file mode 100644 index ffc0a2903d16..000000000000 --- a/mate-base/caja/files/caja-1.24.0-fix-selinux-automagic-dep.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff --git a/configure.ac b/configure.ac -index 052b4d0..12c818d 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -169,17 +169,24 @@ dnl **************************** - dnl *** Check for libselinux *** - dnl **************************** - -+AC_ARG_ENABLE(selinux, -+ [AC_HELP_STRING([--enable-selinux], -+ [build with selinux support])]) -+AM_CONDITIONAL([ENABLE_SELINUX],[test "x$enable_selinux" = "xyes"]) -+ - SELINUX_LIBS= - msg_selinux=no --AC_CHECK_LIB(selinux, is_selinux_enabled, -- [AC_CHECK_HEADERS(selinux/selinux.h, -- [AC_SEARCH_LIBS(selinux_raw_to_trans_context, selinux, -- [AC_DEFINE(HAVE_SELINUX, 1, [Define to 1 if libselinux is available]) -- SELINUX_LIBS="-lselinux" -- msg_selinux=yes]) -- ]) -- ]) --AC_SUBST(SELINUX_LIBS) -+if test "x$enable_selinux" != "xno"; then -+ AC_CHECK_LIB(selinux, is_selinux_enabled, -+ [AC_CHECK_HEADERS(selinux/selinux.h, -+ [AC_SEARCH_LIBS(selinux_raw_to_trans_context, selinux, -+ [AC_DEFINE(HAVE_SELINUX, 1, [Define to 1 if libselinux is available]) -+ SELINUX_LIBS="-lselinux" -+ msg_selinux=yes]) -+ ]) -+ ]) -+ AC_SUBST(SELINUX_LIBS) -+fi - - - AC_ARG_ENABLE(empty_view, -@@ -353,6 +360,7 @@ caja-$VERSION: - warning flags: ${WARNING_CFLAGS} - xmp support: $msg_xmp - PackageKit support: $msg_packagekit -+ SELinux support: $msg_selinux - Self check: $msg_self_check - - caja-extension documentation: ${enable_gtk_doc} |