summaryrefslogtreecommitdiffstats
path: root/src/plugins/bearer
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-09-05 15:23:53 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-09-05 15:29:27 (GMT)
commitce1a25fc692abcaa1c825f465d6a158efa953b06 (patch)
tree10b543fa761a31bba0e3e049330bda5c3dfb2ddc /src/plugins/bearer
parent85cd78b01812d108f381e42b044abaa888c4146e (diff)
downloadQt-ce1a25fc692abcaa1c825f465d6a158efa953b06.zip
Qt-ce1a25fc692abcaa1c825f465d6a158efa953b06.tar.gz
Qt-ce1a25fc692abcaa1c825f465d6a158efa953b06.tar.bz2
Ensure that the corewlan plugin can be built with the Mac OS X 10.7 sdk
When the 10.7 SDK was specified explicitly then it would fail the check inside the pro file. So this ensures that this is accounted for. Task-number: QTBUG-20516 Merge-request: 2657 Reviewed-by: ossi
Diffstat (limited to 'src/plugins/bearer')
-rw-r--r--src/plugins/bearer/corewlan/corewlan.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bearer/corewlan/corewlan.pro b/src/plugins/bearer/corewlan/corewlan.pro
index 59b1383..5d7a795 100644
--- a/src/plugins/bearer/corewlan/corewlan.pro
+++ b/src/plugins/bearer/corewlan/corewlan.pro
@@ -5,7 +5,7 @@ QT = core network
LIBS += -framework Foundation -framework SystemConfiguration
contains(QT_CONFIG, corewlan) {
- isEmpty(QMAKE_MAC_SDK)|contains(QMAKE_MAC_SDK, "/Developer/SDKs/MacOSX10.6.sdk") {
+ isEmpty(QMAKE_MAC_SDK)|contains(QMAKE_MAC_SDK, "/Developer/SDKs/MacOSX10\.[67]\.sdk") {
LIBS += -framework CoreWLAN -framework Security
}
}