1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00
freebsd-ports/security/cyrus-sasl2-gssapi/Makefile
Hajimu UMEMOTO bdf37d02bb - Call gss_acquire_cred() before gss_init_sec_context()
in gssapi_client_mech_step()
- Fix a bug which prevented the client from retrieving
  a credential from CCACHE.

These patches were already merged into upstream.

  https://github.com/cyrusimap/cyrus-sasl/pull/575
  https://github.com/cyrusimap/cyrus-sasl/pull/591

Submitted by:	hrs
2020-02-24 04:51:17 +00:00

31 lines
909 B
Makefile

# $FreeBSD$
PKGNAMESUFFIX= -gssapi
PORTREVISION= 1
COMMENT= SASL GSSAPI authentication plugin
OPTIONS_SINGLE= GSSAPI
OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT
OPTIONS_DEFAULT= GSSAPI_BASE
GSSAPI_BASE_USES= gssapi:base
GSSAPI_BASE_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
--with-gss_impl=heimdal
GSSAPI_HEIMDAL_USES= gssapi:heimdal,flags
GSSAPI_HEIMDAL_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
--with-gss_impl=heimdal
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
.include "${.CURDIR}/../../security/cyrus-sasl2/Makefile.common"