diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-03-28 19:37:41 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-03-28 19:37:41 +0800 |
commit | 0d90da974ce412e9c581fb6e0836bece5432de5b (patch) | |
tree | 33a48334de4d1cf20d3ccf446a56948b9500ece3 | |
parent | c90f4a955d724c87d88e3acaeb74fc761194562e (diff) | |
download | freebsd-ports-gnome-0d90da974ce412e9c581fb6e0836bece5432de5b.tar.gz freebsd-ports-gnome-0d90da974ce412e9c581fb6e0836bece5432de5b.tar.zst freebsd-ports-gnome-0d90da974ce412e9c581fb6e0836bece5432de5b.zip |
- Add IGNORE for LibreSSL
PR: 198397 (based on)
Submitted by: Bernard Spil <spil.oss@gmail.com>
-rw-r--r-- | ftp/curl/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 5078acb6a1d6..313d94fbf46f 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -158,6 +158,15 @@ 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:MGSSAPI_BASE} +IGNORE= with GSSAPI_BASE, configure failed to detect OpenSSL/LibreSSL from ports and link against base OpenSSL +.endif +.if ${PORT_OPTIONS:MTLS_SRP} +IGNORE= unsupported TLS-SRP in LibreSSL +.endif +.endif + post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS = / s|$$| docs|; /^DIST_SUBDIRS = / s| docs||; /cd docs &&/d' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|\(flags_dbg_off=\)".*"|\1""|; s|\(flags_opt_off=\)".*"|\1""|; s|lib/pkgconfig|libdata/pkgconfig|g' ${WRKSRC}/configure |