From d7fc9e378d9866e4bde9a58af4d8f2c96a2914ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stig=20Bj=C3=B8rlykke?= Date: Wed, 23 Sep 2009 18:15:31 +0000 Subject: [PATCH] Try finding gpg-error library, to improve building on OSX. svn path=/trunk/; revision=30100 --- cmake/modules/FindGCRYPT.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/modules/FindGCRYPT.cmake b/cmake/modules/FindGCRYPT.cmake index 3b8cb244e4..5920a83949 100644 --- a/cmake/modules/FindGCRYPT.cmake +++ b/cmake/modules/FindGCRYPT.cmake @@ -15,6 +15,7 @@ FIND_PATH(GCRYPT_INCLUDE_DIR gcrypt.h) SET(GCRYPT_NAMES gcrypt) FIND_LIBRARY(GCRYPT_LIBRARY NAMES ${GCRYPT_NAMES} ) +FIND_LIBRARY(GCRYPT_ERROR_LIBRARY NAMES gpg-error ) # handle the QUIETLY and REQUIRED arguments and set GCRYPT_FOUND to TRUE if # all listed variables are TRUE @@ -22,7 +23,7 @@ INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GCRYPT DEFAULT_MSG GCRYPT_LIBRARY GCRYPT_INCLUDE_DIR) IF(GCRYPT_FOUND) - SET( GCRYPT_LIBRARIES ${GCRYPT_LIBRARY} ) + SET( GCRYPT_LIBRARIES ${GCRYPT_LIBRARY} ${GCRYPT_ERROR_LIBRARY}) ELSE(GCRYPT_FOUND) SET( GCRYPT_LIBRARIES ) ENDIF(GCRYPT_FOUND) -- 2.34.1