diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2006-03-11 01:19:17 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2006-03-11 01:19:17 +0000 |
commit | fc82e6afa9bed0163be31d687486e136443c7b24 (patch) | |
tree | 56d496b52f1bc4913c633c81259e64824a211443 /misc | |
parent | 5c88c0f7a517345471057b17878b03bf2a7a1c27 (diff) | |
download | ports-fc82e6afa9bed0163be31d687486e136443c7b24.tar.gz ports-fc82e6afa9bed0163be31d687486e136443c7b24.zip |
Notes
Diffstat (limited to 'misc')
-rw-r--r-- | misc/kcd-devel/Makefile | 8 | ||||
-rw-r--r-- | misc/kcd/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/misc/kcd-devel/Makefile b/misc/kcd-devel/Makefile index 7a7d031d6c12..9476f781b763 100644 --- a/misc/kcd-devel/Makefile +++ b/misc/kcd-devel/Makefile @@ -24,6 +24,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= kcd.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 700013 +IGNORE= allocates an infinite amount of memory in configure script +.endif + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/kcd-inst ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/kcdscr ${PREFIX}/bin @@ -42,4 +48,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/kcd.sh.init ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/misc/kcd/Makefile b/misc/kcd/Makefile index 9c891cebeadd..729f332d988e 100644 --- a/misc/kcd/Makefile +++ b/misc/kcd/Makefile @@ -24,6 +24,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= kcd.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 700013 +IGNORE= allocates an infinite amount of memory in configure script +.endif + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/kcd-inst ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/kcdscr ${PREFIX}/bin @@ -42,4 +48,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/kcd.sh.init ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |