aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-23 18:15:31 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-23 18:15:31 +0000
commitb774177337b12db7deb39279139aae03445fb574 (patch)
tree74655dd87b2f7304aa6637442dbc0c5981856455 /cmake
parentc6e7dc4433694005ce7facd4ad394feaafb840c8 (diff)
Try finding gpg-error library, to improve building on OSX.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30100 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindGCRYPT.cmake3
1 files changed, 2 insertions, 1 deletions
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)