svn commit: r480023 - head/multimedia/openquicktime

Ed Maste emaste at FreeBSD.org
Tue Sep 18 13:57:04 UTC 2018


Author: emaste (src committer)
Date: Tue Sep 18 13:57:03 2018
New Revision: 480023
URL: https://svnweb.freebsd.org/changeset/ports/480023

Log:
  multimedia/openquicktime: add -fPIC to i386 CFLAGS
  
  By default lld disallows relocations in read-only segments; shared
  objects should be built as PIC.
  
  PR:		214864
  Approved by:	bapt

Modified:
  head/multimedia/openquicktime/Makefile

Modified: head/multimedia/openquicktime/Makefile
==============================================================================
--- head/multimedia/openquicktime/Makefile	Tue Sep 18 13:55:11 2018	(r480022)
+++ head/multimedia/openquicktime/Makefile	Tue Sep 18 13:57:03 2018	(r480023)
@@ -22,6 +22,7 @@ PKGDEINSTALL=	${PKGINSTALL}
 
 CFLAGS_aarch64=	-fPIC
 CFLAGS_amd64=	-fPIC
+CFLAGS_i386=	-fPIC
 
 OPTIONS_DEFINE=	DEBUG
 


More information about the svn-ports-head mailing list