diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-11-02 10:11:31 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-11-02 10:11:31 +0000 |
commit | 3277ab6371bbff740b59061e8b685d1548f9c338 (patch) | |
tree | c6d216136c5e51d8c07362243a3916fb6aeef70a /ftp | |
parent | 8ff4c4e18bcf7c3c0c718c264ce5ca242e0a0a2d (diff) | |
download | ports-3277ab6371bbff740b59061e8b685d1548f9c338.tar.gz ports-3277ab6371bbff740b59061e8b685d1548f9c338.zip |
- Fix build when both GSSAPI and SPNEGO options are on
When SPNEGO option is on, LOCALBASE/include/fbopenssl was added to the search
path of include files. It causes build failure when "#include <gssapi.h>" wants
/usr/include/gssapi/gssapi.h.
Notes
Notes:
svn path=/head/; revision=332465
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/curl/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 9b0732c63848..16c318f302ef 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -68,9 +68,8 @@ GNUTLS_CONFIGURE_OFF= --without-gnutls GNUTLS_CONFIGURE_ON= --with-gnutls=${LOCALBASE} GNUTLS_LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls GSSAPI_CONFIGURE_OFF= --without-gssapi -GSSAPI_CONFIGURE_ON= --with-gssapi \ - --with-gssapi-includes=${INCLUDEDIR} \ - --with-gssapi-libs=${LIBDIR} +GSSAPI_CONFIGURE_ON= --with-gssapi=/usr +GSSAPI_CPPFLAGS= -I${INCLUDEDIR}/gssapi IDN_CONFIGURE_OFF= --without-libidn IDN_CONFIGURE_ON= --with-libidn=${LOCALBASE} IDN_LIB_DEPENDS= libidn.so:${PORTSDIR}/dns/libidn |