diff options
author | obrien <obrien@FreeBSD.org> | 2004-12-06 07:01:36 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-12-06 07:01:36 +0800 |
commit | 08c4b33adb9aea02819fcb3c8c1d6ba97120342a (patch) | |
tree | f10d879e5bee79b88a4fa21af2fdd55776499b9a /lang | |
parent | 0c5fb8e3a5ebba16e487e18b52c17d1b9c3f38a5 (diff) | |
download | freebsd-ports-gnome-08c4b33adb9aea02819fcb3c8c1d6ba97120342a.tar.gz freebsd-ports-gnome-08c4b33adb9aea02819fcb3c8c1d6ba97120342a.tar.zst freebsd-ports-gnome-08c4b33adb9aea02819fcb3c8c1d6ba97120342a.zip |
If built on a machine with GCC 3.2 or later; assume the machine has CPUTYPE
set to something GCC 2.8 won't understand.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/glibstdc++28/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/glibstdc++28/Makefile b/lang/glibstdc++28/Makefile index 2888f7178505..c2a869829d73 100644 --- a/lang/glibstdc++28/Makefile +++ b/lang/glibstdc++28/Makefile @@ -31,6 +31,9 @@ DEPRECATED= "This port is no longer in use by anything in the ports collection a .if ${OSVERSION} >= 500113 BROKEN= "Does not compile (bad C++ code)" .endif +.if ${OSVERSION} >= 500039 +WITHOUT_CPU_CFLAGS= yes +.endif CC= gcc28 CXX= g++28 |