diff options
Diffstat (limited to 'net/callgen/Makefile')
-rw-r--r-- | net/callgen/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/callgen/Makefile b/net/callgen/Makefile index 0a1c5e80ab32..63c96ae919ab 100644 --- a/net/callgen/Makefile +++ b/net/callgen/Makefile @@ -24,7 +24,13 @@ THE_MACHTYPE= ${ARCH:S/i386/x86/} PLIST_FILES= bin/callgen323 +.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/callgen323 ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |