From owner-svn-ports-all@freebsd.org Fri Sep 1 14:55:48 2017 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 3D6D6E12E26; Fri, 1 Sep 2017 14:55:48 +0000 (UTC) (envelope-from linimon@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 0D0E974FA9; Fri, 1 Sep 2017 14:55:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v81EtlBM058715; Fri, 1 Sep 2017 14:55:47 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v81Etl3J058714; Fri, 1 Sep 2017 14:55:47 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201709011455.v81Etl3J058714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 1 Sep 2017 14:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449084 - head/net/freerdp1 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/net/freerdp1 X-SVN-Commit-Revision: 449084 X-SVN-Commit-Repository: ports 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: Fri, 01 Sep 2017 14:55:48 -0000 Author: linimon Date: Fri Sep 1 14:55:47 2017 New Revision: 449084 URL: https://svnweb.freebsd.org/changeset/ports/449084 Log: The src tree is splitting 32-bit arm support into 'armv6' and the new 'armv7'. This patch adds armv7 support. It should provide no regression on any existing architecture. PR: 221898 Approved by: maintainer Modified: head/net/freerdp1/Makefile Modified: head/net/freerdp1/Makefile ============================================================================== --- head/net/freerdp1/Makefile Fri Sep 1 14:49:09 2017 (r449083) +++ head/net/freerdp1/Makefile Fri Sep 1 14:55:47 2017 (r449084) @@ -32,7 +32,9 @@ OPTIONS_DEFAULT= CUPS GSTREAMER X11 OPTIONS_SUB= yes OPTIONS_DEFINE_armv6= NEON +OPTIONS_DEFINE_armv7= NEON OPTIONS_EXCLUDE_armv6= SSE +OPTIONS_EXCLUDE_armv7= SSE ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CMAKE_BOOL= WITH_ALSA @@ -67,11 +69,11 @@ X11_USE= xorg=x11,xkbfile,xcursor,xextproto,xv,xinera .include -.if ${OPSYS} == "FreeBSD" && ${ARCH} == "armv6" +.if ${OPSYS} == FreeBSD && (${ARCH} == armv6 || ${ARCH} == armv7) .if ${OSVERSION} < 1100500 || \ (${OSVERSION} >= 1100500 && ${OSVERSION} < 1100504) || \ (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200008) -BROKEN= Fails to build on ARMv6 (libm bug). See: r305380 (HEAD), r305971 (stable/11) [\#199422, \#211965] \ +BROKEN= Fails to build on ARMv6/7 (libm bug). See: r305380 (HEAD), r305971 (stable/11) [\#199422, \#211965] \ Please update to a later (fixed) version. .endif .endif