diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-09-27 16:14:28 -0700 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-09-27 16:14:37 -0700 |
commit | 82631c0884dcf706d6a71aa2fd5716bac024eddf (patch) | |
tree | 697607274c78852d1ca378cd93b2f5d62385ca75 | |
parent | Merge pull request #6819 (diff) | |
parent | link libzmq against libgssapi_krb5 if found (diff) | |
download | monero-82631c0884dcf706d6a71aa2fd5716bac024eddf.tar.xz |
Merge pull request #6824
0b26d380c link libzmq against libgssapi_krb5 if found (moneromooo-monero)
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a16e0081..41f82e26c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -969,6 +969,7 @@ find_path(ZMQ_INCLUDE_PATH zmq.h) find_library(ZMQ_LIB zmq) find_library(PGM_LIBRARY pgm) find_library(NORM_LIBRARY norm) +find_library(GSSAPI_LIBRARY gssapi_krb5) find_library(PROTOLIB_LIBRARY protolib) find_library(SODIUM_LIBRARY sodium) @@ -984,6 +985,9 @@ endif() if(NORM_LIBRARY) set(ZMQ_LIB "${ZMQ_LIB};${NORM_LIBRARY}") endif() +if(GSSAPI_LIBRARY) + set(ZMQ_LIB "${ZMQ_LIB};${GSSAPI_LIBRARY}") +endif() if(PROTOLIB_LIBRARY) set(ZMQ_LIB "${ZMQ_LIB};${PROTOLIB_LIBRARY}") endif() |