Skip to content

Commit

Permalink
Merge pull request monero-project#234 from stoffu/aeon-gssapi
Browse files Browse the repository at this point in the history
link libzmq against libgssapi_krb5 if found monero/monero-project#6824
  • Loading branch information
aeonix committed Oct 21, 2021
2 parents cfd95ef + a411fae commit cd73589
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -966,6 +966,7 @@ find_path(ZMQ_INCLUDE_PATH zmq.hpp)
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)

Expand All @@ -981,6 +982,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()
Expand Down

0 comments on commit cd73589

Please sign in to comment.