Fix cmake epoll detection.

pull/2166/head
Roger Light 5 years ago
parent e401def06d
commit ace2aa764e

@ -8,6 +8,9 @@ Broker:
- Fix QoS 0 messages not being delivered when max_queued_bytes was configured.
Closes #2123.
Build:
- Fix cmake epoll detection.
2.0.8 - 2021-02-25
==================

@ -77,6 +77,11 @@ if (WITH_BUNDLED_DEPS)
include_directories(${mosquitto_SOURCE_DIR} ${mosquitto_SOURCE_DIR}/deps)
endif (WITH_BUNDLED_DEPS)
find_path(HAVE_SYS_EPOLL_H sys/epoll.h)
if (HAVE_SYS_EPOLL_H)
add_definitions("-DWITH_EPOLL")
endif()
option(INC_BRIDGE_SUPPORT
"Include bridge support for connecting to other brokers?" ON)
if (INC_BRIDGE_SUPPORT)

Loading…
Cancel
Save