diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-09-25 18:19:47 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-09-25 18:19:47 -0500 |
| commit | 1a9a984d2631b7f01637d8119c55f8effd24f72c (patch) | |
| tree | 792a73ddbcd675bf037f508e77752a74b7ad989d | |
| parent | 05405024c05a8fc07dbf610eaf0920b0788e4d9c (diff) | |
| parent | 0473abf51d268e356259ea52f36fdd5972cd1486 (diff) | |
| download | monzero-core-0.17.0.1.tar.gz monzero-core-0.17.0.1.tar.xz monzero-core-0.17.0.1.zip | |
Merge pull request #6845v0.17.0.1
0473abf 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() |
