mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
add auto selection of libsecret with fallback to libgnome-keyring
This commit is contained in:
parent
1129bcb0c0
commit
c89e36a665
@ -340,13 +340,19 @@ linux-* {
|
||||
QMAKE_LIBDIR *= "$$RS_LIB_DIR"
|
||||
|
||||
rs_autologin {
|
||||
#DEFINES *= HAS_GNOME_KEYRING
|
||||
#PKGCONFIG *= gnome-keyring-1
|
||||
|
||||
# try libsecret first since it is not limited to gnome keyring and libgnome-keyring is deprecated
|
||||
LIBSECRET_AVAILABLE = $$system(pkg-config --exists libsecret-1 && echo yes)
|
||||
isEmpty(LIBSECRET_AVAILABLE) {
|
||||
message("using libgnome-keyring for auto login")
|
||||
DEFINES *= HAS_GNOME_KEYRING
|
||||
PKGCONFIG *= gnome-keyring-1
|
||||
} else {
|
||||
message("using libsecret for auto login")
|
||||
DEFINES *= HAS_LIBSECRET
|
||||
PKGCONFIG *= libsecret-1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
android-* {
|
||||
isEmpty(NATIVE_LIBS_TOOLCHAIN_PATH) {
|
||||
|
Loading…
Reference in New Issue
Block a user