summaryrefslogtreecommitdiffstats
path: root/src/corelib/arch/macosx/arch.pri
diff options
context:
space:
mode:
authorNorwegian Rock Cat <qt-info@nokia.com>2009-06-23 13:40:03 (GMT)
committerNorwegian Rock Cat <qt-info@nokia.com>2009-06-23 13:41:19 (GMT)
commit7f61481aca24530438121bad76c066db0a5c4b41 (patch)
treee8878b5b7affb7f21b007b9fa94c51e677dcd140 /src/corelib/arch/macosx/arch.pri
parent5138c39116a03e36005a03f47f718fced6cc6d4e (diff)
downloadQt-7f61481aca24530438121bad76c066db0a5c4b41.zip
Qt-7f61481aca24530438121bad76c066db0a5c4b41.tar.gz
Qt-7f61481aca24530438121bad76c066db0a5c4b41.tar.bz2
Remove these outdated references
This doesn't work, the paths are wrong. It's not properly checking the arch, and none of our compilers use it. Unsupported ones might, but I'd rather leave it blank and let them figure out how to do it correctly then lead them down a blind alley. Discussed with Morten Sørvig
Diffstat (limited to 'src/corelib/arch/macosx/arch.pri')
-rw-r--r--src/corelib/arch/macosx/arch.pri7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/corelib/arch/macosx/arch.pri b/src/corelib/arch/macosx/arch.pri
index e42a962..a2b1bf7 100644
--- a/src/corelib/arch/macosx/arch.pri
+++ b/src/corelib/arch/macosx/arch.pri
@@ -1,7 +1,6 @@
#
# Mac OS X architecture
#
-!*-icc*:!*-g++* {
- contains($$list($$system(uname -m)), .*86):SOURCES += $$QT_ARCH_CPP/../i386/qatomic.s
- else:SOURCES += $$QT_ARCH_CPP/../powerpc/qatomic32.s
-}
+
+# Left blank intentionally since all the current compilers that we support can
+# handle in-line assembly.