svn commit: r480047 - head/mail/eps

Ed Maste emaste at FreeBSD.org
Tue Sep 18 17:46:34 UTC 2018


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

Log:
  mail/eps: 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/mail/eps/Makefile

Modified: head/mail/eps/Makefile
==============================================================================
--- head/mail/eps/Makefile	Tue Sep 18 17:46:29 2018	(r480046)
+++ head/mail/eps/Makefile	Tue Sep 18 17:46:33 2018	(r480047)
@@ -17,6 +17,7 @@ OPTIONS_DEFINE=	DOCS
 USE_CSTD=	gnu89
 
 CFLAGS_amd64=	-fPIC
+CFLAGS_i386=	-fPIC
 
 PORTDOCS=	howto
 


More information about the svn-ports-head mailing list