Deprecate KeePassHTTP and introduce WITH_XC_NETWORKING CMake option

This commit is contained in:
Janek Bevendorff 2018-01-17 00:56:47 +01:00
parent f2b3181735
commit f520a0f272
No known key found for this signature in database
GPG key ID: 2FDEB0D40BCA5E11
17 changed files with 127 additions and 43 deletions

View file

@ -78,20 +78,20 @@ AboutDialog::AboutDialog(QWidget* parent)
#endif
QString extensions;
#ifdef WITH_XC_HTTP
extensions += "\n- KeePassHTTP";
#endif
#ifdef WITH_XC_AUTOTYPE
extensions += "\n- Auto-Type";
#endif
#ifdef WITH_XC_YUBIKEY
extensions += "\n- YubiKey";
#ifdef WITH_XC_BROWSER
extensions += "\n- Browser Integration";
#endif
#ifdef WITH_XC_HTTP
extensions += "\n- Legacy Browser Integration (KeePassHTTP)";
#endif
#ifdef WITH_XC_SSHAGENT
extensions += "\n- SSH Agent";
#endif
#ifdef WITH_XC_BROWSER
extensions += "\n- Native messaging browser extension";
#ifdef WITH_XC_YUBIKEY
extensions += "\n- YubiKey";
#endif
if (extensions.isEmpty())