diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2004-02-23 14:03:37 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2004-02-23 14:03:37 +0000 |
commit | b3cb478760700f0faf22f10fce3bb86881291bd8 (patch) | |
tree | 70e4ae04dedcdd02fc1829bcca3bea8ce5bcb280 /security/krb4 | |
parent | Put CFLAGS in CONFIGURE_ENV (diff) |
On amd64, include -fPIC in CFLAGS.
PR: ports/63200
Reported by: Hendrik Scholz <hendrik@scholz.net>
Notes
Notes:
svn path=/head/; revision=101862
Diffstat (limited to 'security/krb4')
-rw-r--r-- | security/krb4/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/krb4/Makefile b/security/krb4/Makefile index 78616edb0c97..26a6ba935d0b 100644 --- a/security/krb4/Makefile +++ b/security/krb4/Makefile @@ -27,6 +27,7 @@ CONFIGURE_ARGS+= \ --disable-afs-support \ --without-x CONFIGURE_ENV+= \ + "CFLAGS=${CFLAGS}" \ "CPPFLAGS=-DOPENSSL_DES_LIBDES_COMPATIBILITY" \ "LDFLAGS=-Wl,-rpath,${PREFIX}/lib" @@ -45,4 +46,8 @@ setuids: .endfor .include "Makefile.man" -.include <bsd.port.mk> +.include <bsd.port.pre.mk> +.if ${ARCH} == "amd64" +CFLAGS+= -fPIC +.endif +.include <bsd.port.post.mk> |