diff options
author | kris <kris@FreeBSD.org> | 2004-06-19 09:16:46 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-06-19 09:16:46 +0000 |
commit | 50b3208d254438668fa8680964b85e8f2af354c1 (patch) | |
tree | 6f759f157d704d58b67f71d17d4544e04d026ab8 /comms/pstngw | |
parent | 9398d7d7bbdf08a9b1a09ad00244f98229cfc5e0 (diff) | |
download | FreeBSD-ports-50b3208d254438668fa8680964b85e8f2af354c1.zip FreeBSD-ports-50b3208d254438668fa8680964b85e8f2af354c1.tar.gz |
BROKEN on amd64: Shared libraries must be compiled with -fPIC
Diffstat (limited to 'comms/pstngw')
-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 d2c5d30..b38a9c0 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> |