From owner-svn-ports-all@freebsd.org Sun Dec 25 03:15:15 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4A15C8CEDB; Sun, 25 Dec 2016 03:15:15 +0000 (UTC) (envelope-from jrm@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 mx1.freebsd.org (Postfix) with ESMTPS id 8423C1C99; Sun, 25 Dec 2016 03:15:15 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBP3FEKR076005; Sun, 25 Dec 2016 03:15:14 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBP3FEpt076004; Sun, 25 Dec 2016 03:15:14 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201612250315.uBP3FEpt076004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sun, 25 Dec 2016 03:15:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429390 - head/security/wpa_supplicant X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2016 03:15:15 -0000 Author: jrm Date: Sun Dec 25 03:15:14 2016 New Revision: 429390 URL: https://svnweb.freebsd.org/changeset/ports/429390 Log: security/wpa_supplicant: Allow users of FreeBSD 9 with libre- or openssl from ports to build the port. FreeBSD 9 is EOL in less than a week. Now those stragglers still running 9.3 can get online to update in the next few days. Approved by: AMDmi3 (mentor) swills (mentor) Differential Revision: https://reviews.freebsd.org/D8875 Modified: head/security/wpa_supplicant/Makefile Modified: head/security/wpa_supplicant/Makefile ============================================================================== --- head/security/wpa_supplicant/Makefile Sun Dec 25 01:11:53 2016 (r429389) +++ head/security/wpa_supplicant/Makefile Sun Dec 25 03:15:14 2016 (r429390) @@ -11,8 +11,6 @@ COMMENT= Supplicant (client) for WPA/802 LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/README -BROKEN_FreeBSD_9= does not build (error: void value not ignored as it ought to be) - USES= cpe gmake readline ssl BUILD_WRKSRC= ${WRKSRC}/wpa_supplicant INSTALL_WRKSRC= ${WRKSRC}/src @@ -95,7 +93,13 @@ TNC_DESC= Trusted Network Connect PRIVSEP_PLIST_FILES= sbin/wpa_priv -.include +.include + +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_9= Does not build on FreeBSD < 10 with base SSL. Add DEFAULT_VERSIONS+=ssl=openssl\ + or DEFAULT_VERSIONS+=ssl=libressl to /etc/make.conf and rebuild everything that\ + requires SSL. +.endif .if ${PORT_OPTIONS:MNDIS} && ${PORT_OPTIONS:MPRIVSEP} BROKEN= Fails to compile with both NDIS and PRIVSEP @@ -173,4 +177,4 @@ do-install-DOCS-on: do-install-PRIVSEP-on: ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/wpa_priv ${STAGEDIR}${PREFIX}/sbin -.include +.include