svn commit: r332465 - head/ftp/curl
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sat Nov 2 10:11:32 UTC 2013
Author: sunpoet
Date: Sat Nov 2 10:11:31 2013
New Revision: 332465
URL: http://svnweb.freebsd.org/changeset/ports/332465
Log:
- 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.
Modified:
head/ftp/curl/Makefile
Modified: head/ftp/curl/Makefile
==============================================================================
--- head/ftp/curl/Makefile Sat Nov 2 09:50:04 2013 (r332464)
+++ head/ftp/curl/Makefile Sat Nov 2 10:11:31 2013 (r332465)
@@ -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
More information about the svn-ports-head
mailing list