diff options
-rw-r--r-- | lang/ici/Makefile | 8 | ||||
-rw-r--r-- | net/pppd23/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/lang/ici/Makefile b/lang/ici/Makefile index e30079f1b94e..c3ec1b741825 100644 --- a/lang/ici/Makefile +++ b/lang/ici/Makefile @@ -26,6 +26,12 @@ ICIHDRS= ici.h icistr-setup.h ICIDOCS= doc/ici.pdf +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ici ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/libici4.a ${PREFIX}/lib @@ -48,4 +54,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/net/pppd23/Makefile b/net/pppd23/Makefile index c98a98c4f4a3..e5cab87f1841 100644 --- a/net/pppd23/Makefile +++ b/net/pppd23/Makefile @@ -18,4 +18,10 @@ GNU_CONFIGURE= yes MAN8= pppd.8 pppstats.8 chat.8 MANCOMPRESSED= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + +.include <bsd.port.post.mk> |