From owner-svn-ports-head@freebsd.org Sun Nov 25 12:09:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E3101151A3B; Sun, 25 Nov 2018 12:09:28 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A8E6A816E0; Sun, 25 Nov 2018 12:09:27 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A1FD1C921; Sun, 25 Nov 2018 12:09:27 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAPC9Rqh002395; Sun, 25 Nov 2018 12:09:27 GMT (envelope-from eugen@FreeBSD.org) Received: (from eugen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAPC9Ri3002394; Sun, 25 Nov 2018 12:09:27 GMT (envelope-from eugen@FreeBSD.org) Message-Id: <201811251209.wAPC9Ri3002394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eugen set sender to eugen@FreeBSD.org using -f From: Eugene Grosbein Date: Sun, 25 Nov 2018 12:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485853 - head/net/mpd5 X-SVN-Group: ports-head X-SVN-Commit-Author: eugen X-SVN-Commit-Paths: head/net/mpd5 X-SVN-Commit-Revision: 485853 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A8E6A816E0 X-Spamd-Result: default: False [1.69 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.64)[0.643,0]; NEURAL_SPAM_SHORT(0.41)[0.407,0]; NEURAL_SPAM_MEDIUM(0.64)[0.638,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2018 12:09:28 -0000 Author: eugen Date: Sun Nov 25 12:09:27 2018 New Revision: 485853 URL: https://svnweb.freebsd.org/changeset/ports/485853 Log: 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. Modified: head/net/mpd5/Makefile Modified: head/net/mpd5/Makefile ============================================================================== --- head/net/mpd5/Makefile Sun Nov 25 11:06:18 2018 (r485852) +++ head/net/mpd5/Makefile Sun Nov 25 12:09:27 2018 (r485853) @@ -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 @@ -29,11 +25,6 @@ USES= ssl .include 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