diff options
author | linimon <linimon@FreeBSD.org> | 2007-11-07 13:46:59 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-11-07 13:46:59 +0800 |
commit | b027862fa854755651f2d350d337b39049f8b813 (patch) | |
tree | dc67ff2ae963f1c5c3cc388836a66d06281dfe2a | |
parent | c3e1be726ba906a8fef8b22200c128f40746a61c (diff) | |
download | freebsd-ports-gnome-b027862fa854755651f2d350d337b39049f8b813.tar.gz freebsd-ports-gnome-b027862fa854755651f2d350d337b39049f8b813.tar.zst freebsd-ports-gnome-b027862fa854755651f2d350d337b39049f8b813.zip |
Mark as broken with gcc4.2.
Hat: portmgr
Approved by: portmgr (self)
-rw-r--r-- | lang/q/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/q/Makefile b/lang/q/Makefile index a076350da30b..5505397fa8a2 100644 --- a/lang/q/Makefile +++ b/lang/q/Makefile @@ -80,8 +80,12 @@ INFO= qdoc .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + .if ${ARCH} == "amd64" -BROKEN= "Does not build on amd64 (shared libraries must be compiled with -fPIC)" +BROKEN= Does not build on amd64 (shared libraries must be compiled with -fPIC) .endif post-extract: |