Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Nov 2015 19:34:50 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r401588 - in head/multimedia/libvpx: . files
Message-ID:  <201511141934.tAEJYoTJ024276@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511141934.tAEJYoTJ024276>