Skip to content

Commit 1a9a984

Browse files
committed
Merge pull request #6845
0473abf link libzmq against libgssapi_krb5 if found (moneromooo-monero)
2 parents 0540502 + 0473abf commit 1a9a984

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,7 @@ find_path(ZMQ_INCLUDE_PATH zmq.h)
969969
find_library(ZMQ_LIB zmq)
970970
find_library(PGM_LIBRARY pgm)
971971
find_library(NORM_LIBRARY norm)
972+
find_library(GSSAPI_LIBRARY gssapi_krb5)
972973
find_library(PROTOLIB_LIBRARY protolib)
973974
find_library(SODIUM_LIBRARY sodium)
974975

@@ -984,6 +985,9 @@ endif()
984985
if(NORM_LIBRARY)
985986
set(ZMQ_LIB "${ZMQ_LIB};${NORM_LIBRARY}")
986987
endif()
988+
if(GSSAPI_LIBRARY)
989+
set(ZMQ_LIB "${ZMQ_LIB};${GSSAPI_LIBRARY}")
990+
endif()
987991
if(PROTOLIB_LIBRARY)
988992
set(ZMQ_LIB "${ZMQ_LIB};${PROTOLIB_LIBRARY}")
989993
endif()

0 commit comments

Comments
 (0)