diff options
author | jperkin <jperkin> | 2013-10-22 14:27:24 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2013-10-22 14:27:24 +0000 |
commit | b97a21f290cc4b915243f1dbe92e5040f5205d46 (patch) | |
tree | 1f8be46b8ad2a2d6a4c478104923ce69397cdf93 /x11/qt4-tools | |
parent | 236523610a3ee418662b08aba4b05f08b30cc7e3 (diff) | |
download | pkgsrc-b97a21f290cc4b915243f1dbe92e5040f5205d46.tar.gz |
Disable optimisation on OSX, as a workaround for QTBUG-5986.
Diffstat (limited to 'x11/qt4-tools')
-rw-r--r-- | x11/qt4-tools/hacks.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11/qt4-tools/hacks.mk b/x11/qt4-tools/hacks.mk index de2cf62bb13..2782d35d410 100644 --- a/x11/qt4-tools/hacks.mk +++ b/x11/qt4-tools/hacks.mk @@ -1,4 +1,4 @@ -# $NetBSD: hacks.mk,v 1.1 2012/09/25 08:07:31 apb Exp $ +# $NetBSD: hacks.mk,v 1.2 2013/10/22 14:27:24 jperkin Exp $ ### [Sat Sep 22 11:21:06 UTC 2012 : apb] ### g++-4.5.3 and 4.5.4 on NetBSD/i386 fails with an internal compiler error @@ -15,3 +15,8 @@ SUBST_FILES.pr46978= src/gui/Makefile SUBST_SED.pr46978= -e '/^CXXFLAGS/s/-O2/-O1/' . endif .endif + +# QTBUG-5986 +.if ${OPSYS} == "Darwin" +BUILDLINK_TRANSFORM+= rm:-O[23] +.endif |