diff options
author | roam <roam@FreeBSD.org> | 2007-06-06 17:10:33 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2007-06-06 17:10:33 +0800 |
commit | ebd89b19ecf0ebdedd0a06f6f6a0f7e950155f84 (patch) | |
tree | 60f2610637569cb2f60f3cc9b896badab3324f1e /mail/vpopmail | |
parent | 4c8508a6821d4724bf4f73326c9ac83217bc8cf4 (diff) | |
download | freebsd-ports-graphics-ebd89b19ecf0ebdedd0a06f6f6a0f7e950155f84.tar.gz freebsd-ports-graphics-ebd89b19ecf0ebdedd0a06f6f6a0f7e950155f84.tar.zst freebsd-ports-graphics-ebd89b19ecf0ebdedd0a06f6f6a0f7e950155f84.zip |
Build the vpopmail library with position-independent code on ia64 too,
not just amd64.
Reported by: kris
Submitted by: oliver
Diffstat (limited to 'mail/vpopmail')
-rw-r--r-- | mail/vpopmail/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/vpopmail/Makefile b/mail/vpopmail/Makefile index 9a6914d2e41..84fc1dfec13 100644 --- a/mail/vpopmail/Makefile +++ b/mail/vpopmail/Makefile @@ -7,6 +7,7 @@ PORTNAME= vpopmail PORTVERSION= 5.4.17 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -203,7 +204,7 @@ EXTRA_PATCHES+= ${FILESDIR}/Makefile.in-noportdocs.patch .include <bsd.port.pre.mk> -.if !defined(WITHOUT_FPIC) && ${ARCH} == "amd64" +.if !defined(WITHOUT_FPIC) && ( ${ARCH} == "amd64" || ${ARCH} == "ia64" ) CFLAGS+= -fPIC .endif |