diff options
| author | Spencer Sutton <spencer@eview-tech.com> | 2019-04-16 00:20:34 -0400 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2019-04-15 23:10:45 -0700 |
| commit | 98655cdaef0f2d1434e12f21793c461a12dbe329 (patch) | |
| tree | 8766fb0358abd6f4fbd855101b7da080aa5f0843 | |
| parent | 5c0f6268d00edde5d9fb4728e3efd92499159d1b (diff) | |
| download | nng-98655cdaef0f2d1434e12f21793c461a12dbe329.tar.gz nng-98655cdaef0f2d1434e12f21793c461a12dbe329.tar.bz2 nng-98655cdaef0f2d1434e12f21793c461a12dbe329.zip | |
fix define mismatch
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 15ffc505..e2a7d699 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -225,7 +225,7 @@ elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin") add_definitions (-DNNG_PLATFORM_DARWIN) # macOS 10.12 and later have getentropy, but the older releases # have ARC4_RANDOM, and that is sufficient to our needs. - add_definitions (-DNNG_USE_ARC4_RANDOM) + add_definitions (-DNNG_USE_ARC4RANDOM) # macOS added some of CLOCK_MONOTONIC, but the implementation is # broken and unreliable, so don't use it. |
