From owner-svn-ports-all@freebsd.org Mon Feb 13 22:13:35 2017 Return-Path: Delivered-To: svn-ports-all@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 B94DCCDEBA0; Mon, 13 Feb 2017 22:13:35 +0000 (UTC) (envelope-from tijl@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 mx1.freebsd.org (Postfix) with ESMTPS id 7E0F9E18; Mon, 13 Feb 2017 22:13:35 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1DMDYO5078703; Mon, 13 Feb 2017 22:13:34 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1DMDY5D078701; Mon, 13 Feb 2017 22:13:34 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201702132213.v1DMDY5D078701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 13 Feb 2017 22:13:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434057 - in head/audio: audiere dumb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Feb 2017 22:13:35 -0000 Author: tijl Date: Mon Feb 13 22:13:34 2017 New Revision: 434057 URL: https://svnweb.freebsd.org/changeset/ports/434057 Log: Remove -fPIC from audio/audiere and add it to audio/dumb where the real problem is. audio/dumb only provides a static library and audio/audiere tries to link that into a shared library. Modified: head/audio/audiere/Makefile head/audio/dumb/Makefile Modified: head/audio/audiere/Makefile ============================================================================== --- head/audio/audiere/Makefile Mon Feb 13 21:48:12 2017 (r434056) +++ head/audio/audiere/Makefile Mon Feb 13 22:13:34 2017 (r434057) @@ -3,7 +3,7 @@ PORTNAME= audiere PORTVERSION= 1.9.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= SF @@ -22,8 +22,6 @@ CONFIGURE_ENV= PTHREAD_LIBS="-lpthread" CPPFLAGS+= -I${LOCALBASE}/include/speex -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CFLAGS_aarch64= -fPIC - PORTDOCS= changelog.txt cvs.txt dependencies.txt faq.txt glossary.txt \ license.txt overview.txt readme.txt release-howto.txt \ tutorial.txt Modified: head/audio/dumb/Makefile ============================================================================== --- head/audio/dumb/Makefile Mon Feb 13 21:48:12 2017 (r434056) +++ head/audio/dumb/Makefile Mon Feb 13 22:13:34 2017 (r434057) @@ -3,7 +3,7 @@ PORTNAME= dumb PORTVERSION= 0.9.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= SF @@ -23,9 +23,8 @@ ALLEGRO_CONFLICTS= dumb-[0-9]* ALLEGRO_MAKE_ARGS_OFF= _PORT_ALLEGRO_CFLAGS= ALLEGRO_CONFLICTS_OFF= dumb-allegro-[0-9]* -CFLAGS_amd64= -fPIC -CFLAGS_ia64= -fPIC -CFLAGS_sparc64= -fPIC +# libdumb.a is linked into libaudiere.so from audio/audiere. +CFLAGS+= -fPIC post-patch: @${REINPLACE_CMD} -e 's|_INSTALL_PATH := |&$${DESTDIR}|' ${WRKSRC}/Makefile