1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-24 04:36:34 +01:00

Fix building with Qt 4.7 on Linux

This commit is contained in:
David Rosca 2014-10-18 17:05:29 +02:00
parent 2c0582b9a1
commit 55b9f2c515

View File

@ -1,10 +1,15 @@
# Unix
!mac:unix {
buildNotifications = true
contains(DEFINES, USE_QTWEBKIT_2_2) {
buildNotifications = true
contains(DEFINES, USE_QTWEBKIT_2_3):system(pkg-config --exists hunspell) {
buildSpellcheck = true
LIBS += $$system(pkg-config --libs hunspell)
contains(DEFINES, USE_QTWEBKIT_2_3):system(pkg-config --exists hunspell) {
buildSpellcheck = true
LIBS += $$system(pkg-config --libs hunspell)
}
}
else {
buildPlugin = false
}
}