diff options
author | ume <ume@FreeBSD.org> | 2016-03-12 10:58:46 +0800 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2016-03-12 10:58:46 +0800 |
commit | 311d37ff04d621d65f0ebeb8ca09462bd3ff69dd (patch) | |
tree | 932e72b8e47a7c4adbbbd5f26d607b13ac6449d4 | |
parent | 816842a29524804b2c707c3311ea4de97a79bb38 (diff) | |
download | freebsd-ports-gnome-311d37ff04d621d65f0ebeb8ca09462bd3ff69dd.tar.gz freebsd-ports-gnome-311d37ff04d621d65f0ebeb8ca09462bd3ff69dd.tar.zst freebsd-ports-gnome-311d37ff04d621d65f0ebeb8ca09462bd3ff69dd.zip |
the GS2 plugin can be buildable with the MIT Kerberos as well.
-rw-r--r-- | security/cyrus-sasl2-gssapi/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/security/cyrus-sasl2-gssapi/Makefile b/security/cyrus-sasl2-gssapi/Makefile index 5769b987c5c8..48bd9795a85b 100644 --- a/security/cyrus-sasl2-gssapi/Makefile +++ b/security/cyrus-sasl2-gssapi/Makefile @@ -14,13 +14,16 @@ GSSAPI_BASE_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ GSSAPI_HEIMDAL_USES= gssapi:heimdal,flags GSSAPI_HEIMDAL_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ --with-gss_impl=heimdal -GSSAPI_HEIMDAL_PLIST_FILES= lib/sasl2/libgs2.a \ - lib/sasl2/libgs2.so \ - lib/sasl2/libgs2.so.3 \ - lib/sasl2/libgs2.so.3.0.0 +GSSAPI_HEIMDAL_PLIST_FILES= ${LIBGS2_PLIST_FILES} GSSAPI_MIT_USES= gssapi:mit GSSAPI_MIT_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ --with-gss_impl=mit +GSSAPI_MIT_PLIST_FILES= ${LIBGS2_PLIST_FILES} + +LIBGS2_PLIST_FILES= lib/sasl2/libgs2.a \ + lib/sasl2/libgs2.so \ + lib/sasl2/libgs2.so.3 \ + lib/sasl2/libgs2.so.3.0.0 CYRUS_BUILD_TARGET= gssapiv2 |