svn commit: r412177 - head/devel/dyncall
Thomas Zander
riggs at FreeBSD.org
Wed Mar 30 17:30:48 UTC 2016
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 at 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.
More information about the svn-ports-all
mailing list