mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
KWalletPasswords: Add support for KF5 KWallet
This commit is contained in:
parent
795bb04acc
commit
2b51e2d5ca
|
@ -9,6 +9,7 @@ Version 1.7.0
|
|||
* support for shadow builds with Qt Creator
|
||||
* GreaseMonkey: correctly load scripts in frames
|
||||
* GreaseMonkey: fix rare issue that userscripts won't load on some sites
|
||||
* KWalletPasswords: support for KF5 KWallet
|
||||
|
||||
Version 1.6.6
|
||||
* released 12 May 2014
|
||||
|
|
|
@ -49,7 +49,11 @@ TRANSLATIONS += \
|
|||
translations/zh_CN.ts \
|
||||
translations/zh_TW.ts \
|
||||
|
||||
LIBS += -lkdeui
|
||||
qtHaveModule(KWallet) {
|
||||
QT += KWallet
|
||||
} else {
|
||||
LIBS += -lkdeui
|
||||
}
|
||||
|
||||
PLUGIN_DIR = $$PWD
|
||||
include(../../plugins.pri)
|
||||
|
|
|
@ -33,7 +33,7 @@ outOfDirPlugins = $$(QUPZILLA_PLUGINS_SRCDIR)
|
|||
!CONFIG(debug, debug|release): disablePlugin(TestPlugin)
|
||||
|
||||
# KWalletPasswords only with KDE_INTEGRATION
|
||||
!contains(DEFINES, KDE_INTEGRATION) | equals(QT_MAJOR_VERSION, 5): disablePlugin(KWalletPasswords)
|
||||
!contains(DEFINES, KDE_INTEGRATION) | !qtHaveModule(KWallet): disablePlugin(KWalletPasswords)
|
||||
|
||||
# GnomeKeyringPasswords only with GNOME_INTEGRATION
|
||||
!contains(DEFINES, GNOME_INTEGRATION) | !system(pkg-config --exists gnome-keyring-1): disablePlugin(GnomeKeyringPasswords)
|
||||
|
|
Loading…
Reference in New Issue
Block a user