Commit f1c4416e authored by Luca Boccassi's avatar Luca Boccassi

Problem: typo in CMakeLists "matches" keyword

Solution: must be upper case
parent 1e691503
...@@ -29,7 +29,7 @@ elseif (WITH_LIBSODIUM) ...@@ -29,7 +29,7 @@ elseif (WITH_LIBSODIUM)
include_directories (${SODIUM_INCLUDE_DIRS}) include_directories (${SODIUM_INCLUDE_DIRS})
# On Solaris, libsodium depends on libssp # On Solaris, libsodium depends on libssp
if (${CMAKE_SYSTEM_NAME} matches "SunOS") if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
target_link_libraries (libzmq ssp) target_link_libraries (libzmq ssp)
endif () endif ()
set (HAVE_LIBSODIUM 1) set (HAVE_LIBSODIUM 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment