diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-23 23:08:55 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-23 23:08:55 +0000 |
commit | af45ec8cfe7f2f7f97ff756eadb3ae2bacb139a9 (patch) | |
tree | 971ab9d8bad81b2c7fcb680b6b8ad118c6403b79 | |
parent | Set ONLY_FOR_ARCHS i386. Remove extraneous "exit 1". (diff) |
BROKEN on alpha: Does not compile
-rw-r--r-- | www/kannel/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/kannel/Makefile b/www/kannel/Makefile index 06f2e55e1b5a..061153d564f7 100644 --- a/www/kannel/Makefile +++ b/www/kannel/Makefile @@ -26,6 +26,12 @@ CONFIGURE_ARGS= --with-malloc=native --enable-start-stop-daemon=no MAN1= seewbmp.1 wmlsc.1 wmlsdasm.1 MAN8= kannel.8 run_kannel_box.8 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" +BROKEN= "Does not compile on alpha" +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|-lc_r|${PTHREAD_LIBS:S/"//g}|g' ${WRKSRC}/configure @@ -41,4 +47,4 @@ post-install: @${STRIP_CMD} ${PREFIX}/sbin/${file} .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> |