Hide UI elements when KeePassXC was compiled without -DWITH_XC_YUBIKEY

This commit is contained in:
Janek Bevendorff 2017-02-21 01:06:32 +01:00
parent 8d3e0687a0
commit b2650c5a96
No known key found for this signature in database
GPG key ID: CFEC2F6850BFFA53
5 changed files with 50 additions and 30 deletions

View file

@ -195,13 +195,12 @@ if(NOT ZLIB_SUPPORTS_GZIP)
endif()
# Optional
find_package(YubiKey)
if(WITH_XC_YUBIKEY)
find_package(YubiKey REQUIRED)
if(YUBIKEY_FOUND)
include_directories(SYSTEM ${YUBIKEY_INCLUDE_DIRS})
endif()
if(UNIX)
check_cxx_source_compiles("#include <sys/prctl.h>
int main() { prctl(PR_SET_DUMPABLE, 0); return 0; }"