diff options
author | tabthorpe <tabthorpe@FreeBSD.org> | 2007-10-10 04:03:45 +0800 |
---|---|---|
committer | tabthorpe <tabthorpe@FreeBSD.org> | 2007-10-10 04:03:45 +0800 |
commit | ea6a5202e03a0da2e98f01a25a91ee35f22c2cc0 (patch) | |
tree | b4284887d13a63a8fea8df2b33dcabd2fa0e9d91 /mail | |
parent | 196d6802142aee8ee3d0b67f3d25dc29c89d22aa (diff) | |
download | freebsd-ports-gnome-ea6a5202e03a0da2e98f01a25a91ee35f22c2cc0.tar.gz freebsd-ports-gnome-ea6a5202e03a0da2e98f01a25a91ee35f22c2cc0.tar.zst freebsd-ports-gnome-ea6a5202e03a0da2e98f01a25a91ee35f22c2cc0.zip |
- Unbreak for amd, set CFLAGS+= -fPIC
Submitted by: pointyhat via pavmail
Reviewed by: miwi@
Approved by: ismail enderunix.org (maintainer, via private email) miwi (co-mentor)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/eps/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/eps/Makefile b/mail/eps/Makefile index 0f17fb777253..086967e223ed 100644 --- a/mail/eps/Makefile +++ b/mail/eps/Makefile @@ -13,6 +13,12 @@ MASTER_SITES= http://www.inter7.com/eps/ MAINTAINER= ismail@EnderUNIX.org COMMENT= EPS is a Email Parsing System +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +CFLAGS+= -fPIC +.endif + PORTDOCS= howto MAKE_ENV+= DEFS="${CFLAGS}" @@ -33,4 +39,4 @@ do-install: @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |