Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Jun 2015 17:21:30 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390499 - head/ftp/curl
Message-ID:  <201506241721.t5OHLU2q069120@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Wed Jun 24 17:21:30 2015
New Revision: 390499
URL: https://svnweb.freebsd.org/changeset/ports/390499

Log:
  Prevent building a broken curl when using the openssl port when GSSAPI_BASE set.
  
  Without this curl would link to both /usr/lib/libssl.so and /usr/local/lib/libssl.so
  resulting in a crash at runtime.
  
  Bump revision as current builds are broken at runtime and need to be rebuilt.
  
  PR:		200555
  Submitted by:	truckman
  Approved by:	maintainer timeout

Modified:
  head/ftp/curl/Makefile

Modified: head/ftp/curl/Makefile
==============================================================================
--- head/ftp/curl/Makefile	Wed Jun 24 17:10:41 2015	(r390498)
+++ head/ftp/curl/Makefile	Wed Jun 24 17:21:30 2015	(r390499)
@@ -3,6 +3,7 @@
 
 PORTNAME=	curl
 PORTVERSION=	7.43.0
+PORTREVISION=	1
 CATEGORIES=	ftp www
 MASTER_SITES=	http://curl.haxx.se/download/ \
 		LOCAL/sunpoet
@@ -161,11 +162,14 @@ IGNORE=		only supports LDAPS with SSL
 IGNORE=		only supports LIBSSH2 with OpenSSL
 .endif
 
-.if ${PORT_OPTIONS:MOPENSSL} && defined(OPENSSL_PORT) && ${OPENSSL_PORT} == "security/libressl"
+.if ${PORT_OPTIONS:MOPENSSL} && ( \
+	defined(WITH_OPENSSL_PORT) || \
+	(!defined(WITH_OPENSSL_BASE) && exists(${LOCALBASE}/lib/libcrypto.so)) || \
+	(defined(OPENSSL_PORT) && ${OPENSSL_PORT} == "security/libressl"))
 .if ${PORT_OPTIONS:MGSSAPI_BASE}
-IGNORE=		with GSSAPI_BASE, configure failed to detect OpenSSL/LibreSSL from ports and link against base OpenSSL
+IGNORE=		with GSSAPI_BASE, configure failed to detect OpenSSL/LibreSSL from ports and links against base OpenSSL
 .endif
-.if ${PORT_OPTIONS:MTLS_SRP}
+.if ${PORT_OPTIONS:MTLS_SRP} && defined(OPENSSL_PORT) && ${OPENSSL_PORT} == "security/libressl"
 IGNORE=		unsupported TLS-SRP in LibreSSL
 .endif
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506241721.t5OHLU2q069120>