diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-11-06 15:01:56 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-11-06 15:01:56 +0100 |
commit | e8ab9ba18d459f365d9715dd2aa87a92dcd31cd2 (patch) | |
tree | 47225f998237fe04c89748115448d3dda5fbff14 /src/CMakeLists.txt | |
parent | a176d352e33b459a093200e89ebbb4ff9db5ba7a (diff) | |
download | weechat-e8ab9ba18d459f365d9715dd2aa87a92dcd31cd2.zip |
core: stop cmake if gcrypt lib is not found (bug #37671)
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8c4f316c6..518516d0e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -93,7 +93,7 @@ IF(ENABLE_NLS) ENDIF(ENABLE_NLS) # Check for libgcrypt -FIND_PACKAGE(Gcrypt REQUIRED) +FIND_PACKAGE(GCRYPT REQUIRED) ADD_DEFINITIONS(-DHAVE_GCRYPT) LIST(APPEND EXTRA_LIBS ${GCRYPT_LDFLAGS}) |