diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/wmwave/Makefile | 8 | ||||
-rw-r--r-- | net/wmwifi/Makefile | 8 | ||||
-rw-r--r-- | net/wmwlmon/Makefile | 2 | ||||
-rw-r--r-- | net/ztelnet/Makefile | 4 |
4 files changed, 20 insertions, 2 deletions
diff --git a/net/wmwave/Makefile b/net/wmwave/Makefile index 0c196c4f0c01..daa177c82431 100644 --- a/net/wmwave/Makefile +++ b/net/wmwave/Makefile @@ -29,4 +29,10 @@ PLIST_FILES= bin/wmwave # configure is a no-op for this port. do-configure: -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> diff --git a/net/wmwifi/Makefile b/net/wmwifi/Makefile index b29891c30e80..c990bcbb7009 100644 --- a/net/wmwifi/Makefile +++ b/net/wmwifi/Makefile @@ -23,4 +23,10 @@ CONFIGURE_ENV+= "CPPFLAGS=-I${X11BASE}/include" PLIST_FILES= bin/wmwifi -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> diff --git a/net/wmwlmon/Makefile b/net/wmwlmon/Makefile index 2d355a90ce3f..a39b60599f7c 100644 --- a/net/wmwlmon/Makefile +++ b/net/wmwlmon/Makefile @@ -26,6 +26,8 @@ PLIST_FILES= bin/wmwlmon .if ${OSVERSION} < 600100 BROKEN= Needs WLAN infrastructure from 6.0-RELEASE or newer +.elif ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 .endif post-patch: diff --git a/net/ztelnet/Makefile b/net/ztelnet/Makefile index d6911fe02df3..227d8cbf7636 100644 --- a/net/ztelnet/Makefile +++ b/net/ztelnet/Makefile @@ -31,6 +31,10 @@ PLIST_FILES= bin/ztelnet .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + post-patch: # we can ignore warnings @( cd ${WRKSRC}/ztelnet && \ |