mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-31 01:43:02 +08:00
Merge pull request #914 from drewcrawford/issue_912
Libsodium is now required if and only if --with-libsodium is used
This commit is contained in:
commit
e224be25dc
1
AUTHORS
1
AUTHORS
@ -37,6 +37,7 @@ Dhammika Pathirana <dhammika@gmail.com>
|
|||||||
Dhruva Krishnamurthy <dhruva@ymail.com>
|
Dhruva Krishnamurthy <dhruva@ymail.com>
|
||||||
Dirk O. Kaar <dok@dok-net.net>
|
Dirk O. Kaar <dok@dok-net.net>
|
||||||
Douglas Creager <douglas.creager@redjack.com>
|
Douglas Creager <douglas.creager@redjack.com>
|
||||||
|
Drew Crawford <drew@sealedabstract.com>
|
||||||
Erich Heine <sophacles@gmail.com>
|
Erich Heine <sophacles@gmail.com>
|
||||||
Erik Hugne <erik.hugne@ericsson.com>
|
Erik Hugne <erik.hugne@ericsson.com>
|
||||||
Erik Rigtorp <erik@rigtorp.com>
|
Erik Rigtorp <erik@rigtorp.com>
|
||||||
|
@ -299,7 +299,12 @@ esac
|
|||||||
# Checks for libraries
|
# Checks for libraries
|
||||||
AC_CHECK_LIB([pthread], [pthread_create])
|
AC_CHECK_LIB([pthread], [pthread_create])
|
||||||
AC_CHECK_LIB([rt], [clock_gettime])
|
AC_CHECK_LIB([rt], [clock_gettime])
|
||||||
AC_CHECK_LIB([sodium], [sodium_init],,AC_MSG_WARN(libsodium is needed for CURVE security))
|
if test "x$zmq_search_libsodium" = "xyes"; then
|
||||||
|
AC_CHECK_LIB([sodium], [sodium_init],,AC_MSG_ERROR(libsodium is not installed. Install it or don't pass --with-libsodium to configure script))
|
||||||
|
else
|
||||||
|
AC_CHECK_LIB([sodium], [sodium_init],,AC_MSG_WARN(libsodium is needed for CURVE security))
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Check if the compiler supports -fvisibility=hidden flag. MinGW32 uses __declspec
|
# Check if the compiler supports -fvisibility=hidden flag. MinGW32 uses __declspec
|
||||||
|
Loading…
x
Reference in New Issue
Block a user