From 5713fecdd724e7bda4f34d6b16f1a8a804ee2cc4 Mon Sep 17 00:00:00 2001
From: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Date: Tue, 19 Aug 2014 16:08:18 +0200
Subject: [PATCH] Disable the build on XCode < 5

Chromium itself requires XCode 5 to build and would require
a few modifications to build with the version of libc++ that
ships with XCode 4.

Disable the build on that environment to at least get passed
the Qt5 CI.

Change-Id: I296055ac1880a9e09e2c0e8343058ff5add837c0
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
---
 tools/qmake/mkspecs/features/functions.prf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 5b5e3b84a..c6b712a7f 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -1,5 +1,7 @@
 defineTest(isPlatformSupported) {
   static: return(false)
+  osx:lessThan(QMAKE_XCODE_VERSION, 5): return(false)
+
   linux-g++|win32-msvc2013|macx-clang: return(true)
   return(false)
 }
-- 
GitLab