diff options
author | pav <pav@FreeBSD.org> | 2005-01-30 07:40:07 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-01-30 07:40:07 +0800 |
commit | 5bfa9561f5fcf0317ce9ecf5f0f5dcd4835fe585 (patch) | |
tree | f769d8d8ff2a954a871bf8f38d5efaec55a70ec0 /lang/mozart | |
parent | 42b8f868fcdee99bd9132c4306b03b1a4d7909f3 (diff) | |
download | freebsd-ports-gnome-5bfa9561f5fcf0317ce9ecf5f0f5dcd4835fe585.tar.gz freebsd-ports-gnome-5bfa9561f5fcf0317ce9ecf5f0f5dcd4835fe585.tar.zst freebsd-ports-gnome-5bfa9561f5fcf0317ce9ecf5f0f5dcd4835fe585.zip |
- Fix build on FreeBSD 5
gcc 3.x makes new assumptions on private c++ data
gcc 2.95 compiles mozart with no problems
PR: ports/76798
Submitted by: Paolo Veronelli <paolo_veronelli@yahoo.it>
Diffstat (limited to 'lang/mozart')
-rw-r--r-- | lang/mozart/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/mozart/Makefile b/lang/mozart/Makefile index a280acb66a9c..cd65dfba2530 100644 --- a/lang/mozart/Makefile +++ b/lang/mozart/Makefile @@ -46,7 +46,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX}/lib/oz --disable-doc \ .include <bsd.port.pre.mk> .if ${OSVERSION} >= 502126 -BROKEN= "Does not compile on FreeBSD >= 5.x" +USE_GCC= 2.95 .endif .if ${ARCH} != "i386" |