diff options
| author | steve-scott <steve-scott@users.noreply.github.com> | 2018-12-22 18:54:16 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-12-22 18:54:16 -0800 |
| commit | f94a25d6fa2f75a7e4d64ac1f998c4c0f459c00a (patch) | |
| tree | d005cdd3569f7720ad6d5aa3bf24e3e84faa4cd2 /CMakeLists.txt | |
| parent | 0f3e2a5d14c12c50e700864ec16bbf849eb6dff2 (diff) | |
| download | nng-f94a25d6fa2f75a7e4d64ac1f998c4c0f459c00a.tar.gz nng-f94a25d6fa2f75a7e4d64ac1f998c4c0f459c00a.tar.bz2 nng-f94a25d6fa2f75a7e4d64ac1f998c4c0f459c00a.zip | |
Fix eventfd configuration bug. (#820)
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c13a1678..15ffc505 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -341,7 +341,7 @@ else () nng_check_sym (backtrace_symbols_fd execinfo.h NNG_HAVE_BACKTRACE) nng_check_sym (alloca alloca.h NNG_HAVE_ALLOCA) nng_check_struct_member(msghdr msg_control sys/socket.h NNG_HAVE_MSG_CONTROL) - nng_check_sym (eventfd sys/eventfd NNG_HAVE_EVENTFD) + nng_check_sym (eventfd sys/eventfd.h NNG_HAVE_EVENTFD) nng_check_sym (kqueue sys/event.h NNG_HAVE_KQUEUE) nng_check_sym (port_create port.h NNG_HAVE_PORT_CREATE) nng_check_sym (epoll_create sys/epoll.h NNG_HAVE_EPOLL) |
