From 1cb96a6809ee99d067ad6a373fcfc69067e683bb Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 23 Dec 2011 22:29:13 +0100 Subject: [PATCH] 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 --- src/v8/v8.pri | 10 ++++------ 1 file 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 {