diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:16:46 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:16:46 +0000 |
commit | 8c5b44876e6e9ba03ef71f32054081ad0d824b45 (patch) | |
tree | ddbed3cc2649c9be13fcdd9a2902f7b243767800 /comms | |
parent | BROKEN on 5.x: Does not compile (diff) |
BROKEN on amd64: Shared libraries must be compiled with -fPIC
Notes
Notes:
svn path=/head/; revision=111797
Diffstat (limited to 'comms')
-rw-r--r-- | comms/pstngw/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/comms/pstngw/Makefile b/comms/pstngw/Makefile index d2c5d30695c4..b38a9c0c3959 100644 --- a/comms/pstngw/Makefile +++ b/comms/pstngw/Makefile @@ -26,7 +26,13 @@ THE_MACHTYPE= ${ARCH:S/i386/x86/} PLIST_FILES= bin/pstngw +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (shared libraries must be compiled with -fPIC)" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/obj_${OPSYS}_${THE_MACHTYPE}_d/pstngw ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |