Date: Wed, 30 Mar 2016 17:30:47 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412177 - head/devel/dyncall Message-ID: <201603301730.u2UHUlh5032598@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603301730.u2UHUlh5032598>