summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/gtk20/Makefile
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-09-03 11:06:00 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-09-03 11:06:00 +0800
commit0e91882e72ddaee39117b44b77b5b09123680d64 (patch)
treeab6ae8d25c78f9cffa2c617bd616c5cdfc6f89ac /x11-toolkits/gtk20/Makefile
parent784afa989706d7b62757a8fc4fa03e600bfaf8db (diff)
downloadmarcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.tar
marcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.tar.gz
marcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.tar.bz2
marcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.tar.lz
marcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.tar.xz
marcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.tar.zst
marcuscom-ports-0e91882e72ddaee39117b44b77b5b09123680d64.zip
- Merge bland's latest changes to fix build on 4.x
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4682 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/gtk20/Makefile')
-rw-r--r--x11-toolkits/gtk20/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile
index 5c7fde1eb..cf61f27b1 100644
--- a/x11-toolkits/gtk20/Makefile
+++ b/x11-toolkits/gtk20/Makefile
@@ -3,7 +3,7 @@
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
#
# $FreeBSD$
-# $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.70 2005/08/29 20:02:11 marcus Exp $
+# $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.71 2005/09/02 21:09:15 mezz Exp $
#
PORTNAME= gtk
@@ -80,7 +80,8 @@ STRIP=
# is being use in CPUTYPE that enable SSE2 will causing Java with GTK2 and
# Mono/gtk-sharp crash. Disable SSE2 to solve the crash and see ports/72014
# for detail.
-.if ( ${ARCH} == "i386" || ${ARCH} == "amd64" ) && ${CC} != "icc"
+.if ${OSVERSION} >= 500000 && ( ${ARCH} == "i386" || ${ARCH} == "amd64" ) \
+ && ${CC} != "icc"
CFLAGS+= -mno-sse2
.endif