diff options
author | kris <kris@FreeBSD.org> | 2004-09-18 18:47:46 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-18 18:47:46 +0000 |
commit | 8e6a5fac22b2eadd32378144474e37250fd885ee (patch) | |
tree | ffa0a26b5bb3df44db20acf832f2952f7e1aac8f /korean | |
parent | 478b91a3501b2386302f44aa2031b4d9cbc67b5c (diff) | |
download | FreeBSD-ports-8e6a5fac22b2eadd32378144474e37250fd885ee.zip FreeBSD-ports-8e6a5fac22b2eadd32378144474e37250fd885ee.tar.gz |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Diffstat (limited to 'korean')
-rw-r--r-- | korean/bitchx/Makefile | 4 | ||||
-rw-r--r-- | korean/han/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/korean/bitchx/Makefile b/korean/bitchx/Makefile index 7aecd1f..23b4670 100644 --- a/korean/bitchx/Makefile +++ b/korean/bitchx/Makefile @@ -34,6 +34,10 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${ARCH} == "sparc64" BROKEN= "Does not compile on sparc64 (needs -fPIC)" .endif diff --git a/korean/han/Makefile b/korean/han/Makefile index 9294d01..fcc1070 100644 --- a/korean/han/Makefile +++ b/korean/han/Makefile @@ -19,6 +19,12 @@ ONLY_FOR_ARCHS= i386 USE_GMAKE= YES USE_REINPLACE= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + pre-patch: @${REINPLACE_CMD} -e 's,<malloc.h>,<stdlib.h>,' \ ${WRKSRC}/src/vt.c ${WRKSRC}/lib/mem.c @@ -33,4 +39,4 @@ post-configure: -e 's%%DISTDIR%%${DISTDIR}' \ ${FILESDIR}/han.sh > ${WRKSRC}/han.sh -.include <bsd.port.mk> +.include <bsd.port.post.mk> |