From owner-freebsd-multimedia@freebsd.org Thu Sep 27 22:32:15 2018 Return-Path: Delivered-To: freebsd-multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58A9B10BC6DE for ; Thu, 27 Sep 2018 22:32:15 +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 F3BC77AFFA for ; Thu, 27 Sep 2018 22:32:14 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.ysv.freebsd.org (Postfix) id B7BAC10BC6DD; Thu, 27 Sep 2018 22:32:14 +0000 (UTC) Delivered-To: multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A67A110BC6DC for ; Thu, 27 Sep 2018 22:32:14 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (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 5D68C7AFE4; Thu, 27 Sep 2018 22:32:14 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id A897B16E63; Thu, 27 Sep 2018 22:32:13 +0000 (UTC) Date: Thu, 27 Sep 2018 22:32:12 +0000 From: Mark Linimon To: multimedia@FreeBSD.org Cc: linimon@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r480825 - head/audio/faac] Message-ID: <20180927223203.GB15273@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2018 22:32:15 -0000 FYI ----- Forwarded message from Mark Linimon ----- Date: Thu, 27 Sep 2018 22:30:30 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480825 - head/audio/faac Author: linimon Date: Thu Sep 27 22:30:30 2018 New Revision: 480825 URL: https://svnweb.freebsd.org/changeset/ports/480825 Log: Fix build on gcc-based archs. Tested on powerpc64, amd64. PR: 231668 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket) Modified: head/audio/faac/Makefile Modified: head/audio/faac/Makefile ============================================================================== --- head/audio/faac/Makefile Thu Sep 27 22:24:43 2018 (r480824) +++ head/audio/faac/Makefile Thu Sep 27 22:30:30 2018 (r480825) @@ -17,11 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_ISO= ${WRKSRC}/README LICENSE_PERMS_ISO= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_mips= fails to build: quantize.c:152: error: initializer element is not constant -BROKEN_mips64= fails to build: quantize.c:152: error: initializer element is not constant -BROKEN_powerpc64= fails to build: quantize.c:152: error: initializer element is not constant - -USES= gmake libtool +USES= compiler:c11 gmake libtool INSTALL_TARGET= install-strip GNU_CONFIGURE= yes USE_LDCONFIG= yes ----- End forwarded message -----