diff options
author | 2022-06-16 23:09:27 +0100 | |
---|---|---|
committer | 2022-06-16 23:09:34 +0100 | |
commit | 52f9eedce23475a9eb91391ff92dfcd76c24697f (patch) | |
tree | c33446b31977103ebfa3da320774c759a902908e /net-nds/gssproxy/files | |
parent | net-nds/gssproxy: add 0.9.1 (diff) | |
download | gentoo-52f9eedce23475a9eb91391ff92dfcd76c24697f.tar.gz gentoo-52f9eedce23475a9eb91391ff92dfcd76c24697f.tar.bz2 gentoo-52f9eedce23475a9eb91391ff92dfcd76c24697f.zip |
net-nds/gssproxy: drop 0.9.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-nds/gssproxy/files')
-rw-r--r-- | net-nds/gssproxy/files/gssproxy-0.9.0-configure-systemd.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/net-nds/gssproxy/files/gssproxy-0.9.0-configure-systemd.patch b/net-nds/gssproxy/files/gssproxy-0.9.0-configure-systemd.patch deleted file mode 100644 index 501fe3896666..000000000000 --- a/net-nds/gssproxy/files/gssproxy-0.9.0-configure-systemd.patch +++ /dev/null @@ -1,38 +0,0 @@ -https://github.com/gssapi/gssproxy/commit/325869a33cb923ab2123ab4179399a37503ed3b5.patch -https://bugs.gentoo.org/848909 - -From: Simo Sorce <simo@redhat.com> -Date: Tue, 31 May 2022 11:09:14 -0400 -Subject: [PATCH] Move some configure checks out of a condition - -I was too aggressive in moving all systemd checks, some of them need to -be performed at all times because there are conditionals ependent on the -detection. - -The actual build for gss-only module is controlled by the BUILD_PROXY -guard anyway, so the checking unconditionally should not cause any -change for that configuration even when unused. - -Signed-off-by: Simo Sorce <simo@redhat.com> ---- a/configure.ac -+++ b/configure.ac -@@ -164,13 +164,13 @@ if test x$only_gss_module != xyes; then - [AC_MSG_ERROR([Could not find libcap headers])]) - fi - -- if test x$initscript = xsystemd; then -- WITH_SYSTEMD_UNIT_DIR -- WITH_SYSTEMD_USER_UNIT_DIR -- AM_CHECK_SYSTEMD -- fi - fi - AM_CONDITIONAL([BUILD_PROXY], [test x$only_gss_module != xyes ]) -+if test x$initscript = xsystemd; then -+ WITH_SYSTEMD_UNIT_DIR -+ WITH_SYSTEMD_USER_UNIT_DIR -+fi -+AM_CHECK_SYSTEMD - - AC_ARG_ENABLE([always-interpose], - [AC_HELP_STRING([--enable-always-interpose], - |