diff options
author | ahze <ahze@FreeBSD.org> | 2004-11-01 01:02:38 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2004-11-01 01:02:38 +0800 |
commit | f64f294d148b832aadf4a7ccbff5802680c2e214 (patch) | |
tree | edb9e716d34683341d2ae65a9b09004672b1c6ad /devel | |
parent | 762c9a4da60f92fdcf3b2e453da32f347881882e (diff) | |
download | freebsd-ports-gnome-f64f294d148b832aadf4a7ccbff5802680c2e214.tar.gz freebsd-ports-gnome-f64f294d148b832aadf4a7ccbff5802680c2e214.tar.zst freebsd-ports-gnome-f64f294d148b832aadf4a7ccbff5802680c2e214.zip |
Unbreak slave port devel/stlport-icc
Approved by: adamw (mentor)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/stlport/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/stlport/Makefile b/devel/stlport/Makefile index 9daa59db35ee..66d007f034c0 100644 --- a/devel/stlport/Makefile +++ b/devel/stlport/Makefile @@ -19,10 +19,6 @@ COMMENT?= Adaptation of SGI's Standard Template Library .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502126 -BROKEN= "Does not compile on FreeBSD >= 5.x" -.endif - .if ${ARCH} == "alpha" || ${ARCH} == "amd64" BROKEN= "Segfault during build on alpha and amd64" .endif @@ -44,6 +40,10 @@ PLIST_SUB+= COMPILER=${COMPILER} INSTALL_TARGET= install_unix INSTALLS_SHLIB= yes +.if ${OSVERSION} >= 502126 && ${COMPILER}!="icc" +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .if ${OSVERSION} < 440000 BROKEN= "Not supported on systems prior to FreeBSD 4.4" .endif |