summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Grosbein <eugen@FreeBSD.org>2018-11-25 12:09:27 +0000
committerEugene Grosbein <eugen@FreeBSD.org>2018-11-25 12:09:27 +0000
commit64005d074414493328d725794a62bd81f2cb3ea3 (patch)
tree6ebf325b4617f1a4bff63f38f62675d739867eb7
parentUpdate devel/rebar3 to version 3.7.0. (diff)
net/mpd5: remove BROKEN_SSL*
For now, BROKERNL_SSL* is designed for port that defines GNU_CONFIGURE and USES=pkgconfig to get libssl's include and library paths by means of pkg-config --cflags/--libs or just use CFLAGS etc. including ${LOCALBASE} net/mpd5 does not use pkgconfig nor GNU configure and since last update it forces usage of system libssl despite of presence of other *SSL packages, so BROKEN_SSL* is unneeded and does only harm here.
-rw-r--r--net/mpd5/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/net/mpd5/Makefile b/net/mpd5/Makefile
index e03e4f43e49d..6551d7ce907c 100644
--- a/net/mpd5/Makefile
+++ b/net/mpd5/Makefile
@@ -14,10 +14,6 @@ COMMENT= Multi-link PPP daemon based on netgraph(4)
LICENSE= BSD3CLAUSE
-BROKEN_SSL= libressl libressl-devel
-BROKEN_SSL_REASON_libressl= needs libfetch(3) linked with system libssl
-BROKEN_SSL_REASON_libressl-devel= needs libfetch(3) linked with system libssl
-
OPTIONS_DEFINE= DOCS NG_IPACCT
NG_IPACCT_DESC= Use ng_ipacct kernel module from port
@@ -30,11 +26,6 @@ USES= ssl
MAKE_ARGS+= OSVERSION=${OSVERSION}
-.if ${OPSYS} == "FreeBSD" && ${OSVERSION} < 1200085
-BROKEN_SSL+= openssl111
-BROKEN_SSL_REASON_openssl111= needs libfetch(3) linked with system libssl
-.endif
-
.if ${PORT_OPTIONS:MNG_IPACCT}
BUILD_DEPENDS+= ${LOCALBASE}/include/netgraph/ng_ipacct.h:net-mgmt/ng_ipacct
.if exists(${KMODDIR}/ng_ipacct.ko)