summaryrefslogtreecommitdiffstats
path: root/src/v8
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2011-12-23 22:29:13 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-23 23:20:49 +0100
commit1cb96a6809ee99d067ad6a373fcfc69067e683bb (patch)
tree9ffd78e4a7ebda22a05a8e70d69279d3bcaea52c /src/v8
parentc580be804fc2b18eee2e14ee978621b1386fbea4 (diff)
v8: Change the selection of Operating System
Instead of doing "I want Linux and do it by selecting Unix and discarding everything not implementing the Linux ABI". Select the other operating system first and have a catch all Linux/Unix anchor. !symbian is left inside as it does not hurt right now but could probably be removed before Qt 5.0.0. Change-Id: I731d8349e4f9c0ac33d547523f0a0f422e994e54 Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
Diffstat (limited to 'src/v8')
-rw-r--r--src/v8/v8.pri10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/v8/v8.pri b/src/v8/v8.pri
index 11b74c8151..c3a55490a7 100644
--- a/src/v8/v8.pri
+++ b/src/v8/v8.pri
@@ -231,17 +231,15 @@ SOURCES += \
$$V8SRC/mips/stub-cache-mips.cc
}
-unix:!symbian:!macx {
-SOURCES += \
- $$V8SRC/platform-linux.cc \
- $$V8SRC/platform-posix.cc
-}
-
#os:macos
macx {
SOURCES += \
$$V8SRC/platform-macos.cc \
$$V8SRC/platform-posix.cc
+} else:unix:!symbian {
+SOURCES += \
+ $$V8SRC/platform-linux.cc \
+ $$V8SRC/platform-posix.cc
}
win32 {