From owner-svn-ports-head@freebsd.org Sat Nov 14 19:34:52 2015 Return-Path: Delivered-To: svn-ports-head@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 06A3EA2F62F; Sat, 14 Nov 2015 19:34:52 +0000 (UTC) (envelope-from jbeich@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 AE3711A5E; Sat, 14 Nov 2015 19:34:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAEJYo41024278; Sat, 14 Nov 2015 19:34:50 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAEJYoTJ024276; Sat, 14 Nov 2015 19:34:50 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201511141934.tAEJYoTJ024276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 14 Nov 2015 19:34:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401588 - in head/multimedia/libvpx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 14 Nov 2015 19:34:52 -0000 Author: jbeich Date: Sat Nov 14 19:34:50 2015 New Revision: 401588 URL: https://svnweb.freebsd.org/changeset/ports/401588 Log: multimedia/libvpx: unbreak build on aarch64 Approved by: portmgr blanket Modified: head/multimedia/libvpx/Makefile (contents, props changed) head/multimedia/libvpx/files/patch-configure (contents, props changed) Modified: head/multimedia/libvpx/Makefile ============================================================================== --- head/multimedia/libvpx/Makefile Sat Nov 14 19:34:12 2015 (r401587) +++ head/multimedia/libvpx/Makefile Sat Nov 14 19:34:50 2015 (r401588) @@ -25,6 +25,7 @@ USE_LDCONFIG= yes OPTIONS_DEFINE= DEBUG MULTIRES POSTPROC RUNTIME SHARED SIZE_LIMIT THREADS OPTIONS_DEFAULT=MULTIRES POSTPROC RUNTIME SHARED SIZE_LIMIT THREADS +OPTIONS_EXCLUDE_aarch64=RUNTIME OPTIONS_EXCLUDE_armv6= RUNTIME MULTIRES_DESC= Enable multi-resolution encoding POSTPROC_DESC= Enable postprocessing @@ -75,6 +76,8 @@ CONFIGURE_ARGS+= --target=ppc64-linux-gc .elif ${ARCH} == "sparc64" CONFIGURE_ARGS+= --target=sparc64-linux-gcc USES:= ${USES:Ncompiler*} compiler:c++11-lib +.elif ${ARCH} == "aarch64" +CONFIGURE_ARGS+= --target=arm64-linux-gcc .elif ${ARCH} == "armv6" CONFIGURE_ARGS+= --target=armv6-linux-gcc --cpu=armv6 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-build_make_Makefile Modified: head/multimedia/libvpx/files/patch-configure ============================================================================== --- head/multimedia/libvpx/files/patch-configure Sat Nov 14 19:34:12 2015 (r401587) +++ head/multimedia/libvpx/files/patch-configure Sat Nov 14 19:34:50 2015 (r401588) @@ -1,9 +1,10 @@ --- configure.orig +++ configure -@@ -153,6 +153,10 @@ all_platforms="${all_platforms} x86_64-w +@@ -153,6 +153,11 @@ all_platforms="${all_platforms} x86_64-w all_platforms="${all_platforms} x86_64-win64-vs11" all_platforms="${all_platforms} x86_64-win64-vs12" all_platforms="${all_platforms} x86_64-win64-vs14" ++all_platforms="${all_platforms} arm64-linux-gcc" +all_platforms="${all_platforms} ia64-linux-gcc" +all_platforms="${all_platforms} ppc32-linux-gcc" +all_platforms="${all_platforms} ppc64-linux-gcc"