svn commit: r480048 - head/irc/irssi-xmpp

Ed Maste emaste at FreeBSD.org
Tue Sep 18 17:47:22 UTC 2018


Author: emaste (src committer)
Date: Tue Sep 18 17:47:21 2018
New Revision: 480048
URL: https://svnweb.freebsd.org/changeset/ports/480048

Log:
  irc/irssi-xmpp: add -fPIC on i386, to allow linking with lld
  
  By default lld does not allow non-PIC code where PIC is required.
  Other architectures already apply -fPIC; do so for i386 as well.
  
  Approved by:	portmgr (lld blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/irc/irssi-xmpp/Makefile

Modified: head/irc/irssi-xmpp/Makefile
==============================================================================
--- head/irc/irssi-xmpp/Makefile	Tue Sep 18 17:46:33 2018	(r480047)
+++ head/irc/irssi-xmpp/Makefile	Tue Sep 18 17:47:21 2018	(r480048)
@@ -24,6 +24,7 @@ DATADIR=	${PREFIX}/share/irssi
 DOCSDIR=	${PREFIX}/share/doc/irssi
 CFLAGS_aarch64=	-fPIC
 CFLAGS_amd64=	-fPIC
+CFLAGS_i386=	-fPIC
 
 OPTIONS_DEFINE=	DOCS
 


More information about the svn-ports-head mailing list