Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Dec 2017 03:00:41 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r456580 - head/multimedia/avidemux
Message-ID:  <201712180300.vBI30f32043345@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Mon Dec 18 03:00:41 2017
New Revision: 456580
URL: https://svnweb.freebsd.org/changeset/ports/456580

Log:
  Mark broken on aarch64.  It looks like this Makefile could use some
  modernizing.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/multimedia/avidemux/Makefile.common

Modified: head/multimedia/avidemux/Makefile.common
==============================================================================
--- head/multimedia/avidemux/Makefile.common	Mon Dec 18 02:41:24 2017	(r456579)
+++ head/multimedia/avidemux/Makefile.common	Mon Dec 18 03:00:41 2017	(r456580)
@@ -71,7 +71,7 @@ PLIST_SUB+=	NLS="@comment " QT_NLS="@comment "
 
 # for libexecinfo: (so that __builtin_frame_address() finds the top
 # of the stack)
-.if ${ARCH} == "amd64"
+.if ${ARCH} == amd64
 CFLAGS+=	-fno-omit-frame-pointer
 #MAKE_ENV+=	ARCH=x86_64
 #CONFIGURE_ENV+=	ARCH=x86_64
@@ -271,8 +271,10 @@ LDFLAGS+=	-lc++
 USE_GCC=	yes
 #.endif
 
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN=		Does not compile on ia64, powerpc, or sparc64
+.if ${ARCH} == aarch64
+BROKEN=		cmake/admDetermineSystem.cmake:78: CPU not supported
+.elif ${ARCH} == powerpc || ${ARCH} == sparc64
+BROKEN=		Does not compile on powerpc or sparc64
 .endif
 
 post-patch:



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