From owner-freebsd-multimedia@freebsd.org Mon Dec 18 03:01:31 2017 Return-Path: Delivered-To: freebsd-multimedia@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 EB70BE9ED0A for ; Mon, 18 Dec 2017 03:01:31 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D989067B1B for ; Mon, 18 Dec 2017 03:01:31 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.ysv.freebsd.org (Postfix) id D8BE5E9ED09; Mon, 18 Dec 2017 03:01:31 +0000 (UTC) Delivered-To: multimedia@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 D8576E9ED08 for ; Mon, 18 Dec 2017 03:01:31 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [192.108.105.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C202967B19; Mon, 18 Dec 2017 03:01:31 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (bones.soaustin.net [192.108.105.22]) by mail.soaustin.net (Postfix) with ESMTPSA id 024561204; Sun, 17 Dec 2017 21:01:30 -0600 (CST) Date: Sun, 17 Dec 2017 21:01:28 -0600 From: Mark Linimon To: multimedia@FreeBSD.org Cc: linimon@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r456580 - head/multimedia/avidemux] Message-ID: <20171218030128.GD21616@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Dec 2017 03:01:32 -0000 FYI ----- Forwarded message from Mark Linimon ----- Date: Mon, 18 Dec 2017 03:00:41 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456580 - head/multimedia/avidemux 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: ----- End forwarded message -----