svn commit: r341073 - in head/dns: bind98 bind99

Renato Botelho garga at FreeBSD.org
Sat Jan 25 18:28:04 UTC 2014


Author: garga
Date: Sat Jan 25 18:28:03 2014
New Revision: 341073
URL: http://svnweb.freebsd.org/changeset/ports/341073
QAT: https://qat.redports.org/buildarchive/r341073/

Log:
  Add -fPIC to CFLAGS for amd64, this fix static libraries
  
  Approved by:	mat@ (maintainer)

Modified:
  head/dns/bind98/Makefile
  head/dns/bind99/Makefile

Modified: head/dns/bind98/Makefile
==============================================================================
--- head/dns/bind98/Makefile	Sat Jan 25 18:20:01 2014	(r341072)
+++ head/dns/bind98/Makefile	Sat Jan 25 18:28:03 2014	(r341073)
@@ -104,6 +104,7 @@ GSSAPI_CONFIGURE_WITH=	gssapi
 
 .if (${ARCH} == "amd64")
 ARCH=		x86_64
+CFLAGS+=	-fPIC
 .endif
 
 .if !${PORT_OPTIONS:MLINKS} || ${PORT_OPTIONS:MREPLACE_BASE}

Modified: head/dns/bind99/Makefile
==============================================================================
--- head/dns/bind99/Makefile	Sat Jan 25 18:20:01 2014	(r341072)
+++ head/dns/bind99/Makefile	Sat Jan 25 18:28:03 2014	(r341073)
@@ -111,6 +111,7 @@ GSSAPI_CONFIGURE_WITH=	gssapi
 
 .if (${ARCH} == "amd64")
 ARCH=		x86_64
+CFLAGS+=	-fPIC
 .endif
 
 .if !${PORT_OPTIONS:MLINKS} || ${PORT_OPTIONS:MREPLACE_BASE}


More information about the svn-ports-all mailing list