diff options
author | Ed Maste <emaste@FreeBSD.org> | 2018-09-18 17:46:33 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2018-09-18 17:46:33 +0000 |
commit | 005eee745ff900da1e03fa203afda2d83e5da0f9 (patch) | |
tree | ee045cebce50a6be8d3365bc7366bd2ce01b1bdb /mail/eps | |
parent | 20761d876636b8017eb6436569ea260cfa05fe69 (diff) |
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
Notes
Notes:
svn path=/head/; revision=480047
Diffstat (limited to 'mail/eps')
-rw-r--r-- | mail/eps/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/eps/Makefile b/mail/eps/Makefile index 8a204b9ff23f..edf60ea8093f 100644 --- a/mail/eps/Makefile +++ b/mail/eps/Makefile @@ -17,6 +17,7 @@ OPTIONS_DEFINE= DOCS USE_CSTD= gnu89 CFLAGS_amd64= -fPIC +CFLAGS_i386= -fPIC PORTDOCS= howto |