diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-19 10:47:13 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-19 10:47:13 +0000 |
commit | a5730650377148e4a45cf7d8e27f0ac3ef792138 (patch) | |
tree | dfbec235beffd462bd4bbd390687178743135939 | |
parent | 85ca2f2f496b4ea6c7de2f5e1f6269ad599158a5 (diff) | |
download | ports-a5730650377148e4a45cf7d8e27f0ac3ef792138.tar.gz ports-a5730650377148e4a45cf7d8e27f0ac3ef792138.zip |
Mark as broken on 5.x due to the usual gcc problems (string continuation).
Notified maintainer.
Notes
Notes:
svn path=/head/; revision=96198
-rw-r--r-- | cad/gwave/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cad/gwave/Makefile b/cad/gwave/Makefile index 60c888057d36..77c285cc61ad 100644 --- a/cad/gwave/Makefile +++ b/cad/gwave/Makefile @@ -27,4 +27,10 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= sp2sp.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + +.include <bsd.port.post.mk> |