diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2007-05-26 20:38:49 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2007-05-26 20:38:49 +0000 |
commit | add90dd319be1d4e500d5a1fc89f648ef45d6af8 (patch) | |
tree | 5296c17af9e0f98777120d8d08a8bc295a1b6000 /net | |
parent | 047242b410208c78bebccfd002d545cb0c7bc1aa (diff) | |
download | ports-add90dd319be1d4e500d5a1fc89f648ef45d6af8.tar.gz ports-add90dd319be1d4e500d5a1fc89f648ef45d6af8.zip |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/cap/Makefile | 4 | ||||
-rw-r--r-- | net/crescendo/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/net/cap/Makefile b/net/cap/Makefile index db3f4b535254..25797a62762b 100644 --- a/net/cap/Makefile +++ b/net/cap/Makefile @@ -62,6 +62,10 @@ READMES= applications/papif applications/lwsrv applications/aufs \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + pre-patch: @(cd ${WRKSRC}; \ for f in ../cap60.patch* ; do ${PATCH} -s -p < $$f ; done) diff --git a/net/crescendo/Makefile b/net/crescendo/Makefile index 76ba5c3c4794..41a278c22a89 100644 --- a/net/crescendo/Makefile +++ b/net/crescendo/Makefile @@ -32,6 +32,12 @@ MODIFY= Makefile.in data/Makefile.in USE_XLIB= yes USE_GNOME= gnomelibs +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + post-patch: @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ ${WRKSRC}/configure @@ -52,4 +58,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |