From owner-svn-ports-head@freebsd.org Tue Jun 26 14:36:49 2018 Return-Path: Delivered-To: svn-ports-head@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 31EC410293D1; Tue, 26 Jun 2018 14:36:49 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D57047301A; Tue, 26 Jun 2018 14:36:48 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF676158BC; Tue, 26 Jun 2018 14:36:48 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5QEamY0059341; Tue, 26 Jun 2018 14:36:48 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5QEam8n059340; Tue, 26 Jun 2018 14:36:48 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806261436.w5QEam8n059340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 26 Jun 2018 14:36:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473386 - head/audio/cmus X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/audio/cmus X-SVN-Commit-Revision: 473386 X-SVN-Commit-Repository: ports 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.26 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: Tue, 26 Jun 2018 14:36:49 -0000 Author: tobik Date: Tue Jun 26 14:36:48 2018 New Revision: 473386 URL: https://svnweb.freebsd.org/changeset/ports/473386 Log: audio/cmus: Fix build on powerpc checking for successful build of ffmpeg.c... cc1: error: unrecognized command line option "-std=gnu11" no configure failed. track_info.o: In function `track_info_new': track_info.c:(.text+0x2c): undefined reference to `__atomic_fetch_add_8' Allow build on powerpc64 again as the error in BROKEN looks to be same as the first error on powerc. Modified: head/audio/cmus/Makefile Modified: head/audio/cmus/Makefile ============================================================================== --- head/audio/cmus/Makefile Tue Jun 26 13:16:07 2018 (r473385) +++ head/audio/cmus/Makefile Tue Jun 26 14:36:48 2018 (r473386) @@ -18,11 +18,9 @@ COMMENT= Console-based music player with really cool f LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to configure: checking for successful build of ffmpeg.c... no - +USES= compiler:c11 gmake iconv ncurses pkgconfig USE_GITHUB= yes -USES= gmake iconv ncurses pkgconfig HAS_CONFIGURE= yes CONFIGURE_ARGS= prefix=${PREFIX} mandir=${MANPREFIX}/man \ exampledir=${EXAMPLESDIR} @@ -31,7 +29,8 @@ CONFIGURE_ARGS= prefix=${PREFIX} mandir=${MANPREFIX}/m CONFIGURE_ARGS+= HOSTCC=${CC} # Verbose build makes it easier to spot problems -MAKE_ARGS= V=2 +MAKE_ARGS= V=2 ${MAKE_ARGS_${ARCH:U}} +MAKE_ARGS_powerpc= COMPAT_LIBS="-latomic" # undefined reference to `__atomic_fetch_add_8' # Disable all configure options first. These will be overwritten by # enabled port options later. The args to cmus' configure script