From owner-svn-ports-head@freebsd.org Wed Mar 30 17:30:48 2016 Return-Path: Delivered-To: svn-ports-head@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 35D87AE3A23; Wed, 30 Mar 2016 17:30:48 +0000 (UTC) (envelope-from riggs@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 F2BE416F1; Wed, 30 Mar 2016 17:30:47 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2UHUlkD032599; Wed, 30 Mar 2016 17:30:47 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2UHUlh5032598; Wed, 30 Mar 2016 17:30:47 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201603301730.u2UHUlh5032598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Wed, 30 Mar 2016 17:30:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412177 - head/devel/dyncall X-SVN-Group: ports-head 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.21 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: Wed, 30 Mar 2016 17:30:48 -0000 Author: riggs Date: Wed Mar 30 17:30:46 2016 New Revision: 412177 URL: https://svnweb.freebsd.org/changeset/ports/412177 Log: Add -fPIC to CFLAGS; bump PORTREVISION PIC is required for this port to work properly. However, the port's own build system only adds it if CFLAGS is not set in MAKE_ENV. This adds -fPIC to the pre-defined set of CFLAGS to ensure the port is properly built. PR: 208201 Submitted by: tphilipp@potion-studios.com (maintainer) Modified: head/devel/dyncall/Makefile Modified: head/devel/dyncall/Makefile ============================================================================== --- head/devel/dyncall/Makefile Wed Mar 30 16:47:46 2016 (r412176) +++ head/devel/dyncall/Makefile Wed Mar 30 17:30:46 2016 (r412177) @@ -3,6 +3,7 @@ PORTNAME= dyncall PORTVERSION= 0.9 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.dyncall.org/r${PORTVERSION}/ \ http://www.potion-studios.com/ @@ -14,6 +15,8 @@ LICENSE= ISCL HAS_CONFIGURE= yes +CFLAGS+= -fPIC + # There is no install target in the BSD makefile for this version of the dyncall # library, so install it manually.