mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
Tidy previous commit and add to changelog.
This commit is contained in:
parent
bb6da93e93
commit
1d4bf55165
@ -99,14 +99,15 @@ endif (WITH_THREADING)
|
||||
|
||||
option(DOCUMENTATION "Build documentation?" ON)
|
||||
|
||||
option(WITH_DLT "Include DLT support (requires WITH_DLT)?" OFF)
|
||||
option(WITH_DLT "Include DLT support?" OFF)
|
||||
message(STATUS "WITH_DLT = ${WITH_DLT}")
|
||||
if (${WITH_DLT} STREQUAL ON)
|
||||
if (WITH_DLT)
|
||||
#find_package(DLT REQUIRED)
|
||||
find_package(PkgConfig)
|
||||
pkg_check_modules(DLT "automotive-dlt >= 2.11")
|
||||
add_definitions("-DWITH_DLT")
|
||||
endif (${WITH_DLT} STREQUAL ON)
|
||||
find_package(PkgConfig)
|
||||
pkg_check_modules(DLT "automotive-dlt >= 2.11")
|
||||
add_definitions("-DWITH_DLT")
|
||||
endif (WITH_DLT)
|
||||
|
||||
# ========================================
|
||||
# Include projects
|
||||
# ========================================
|
||||
|
@ -16,6 +16,7 @@ Broker features:
|
||||
DH support
|
||||
- Add explicit support for TLS v1.3.
|
||||
- Drop support for TLS v1.0.
|
||||
- Add support for Automotive DLT logging.
|
||||
|
||||
Client library features:
|
||||
- Add mosquitto_subscribe_multiple() for sending subscriptions to multiple
|
||||
|
@ -120,11 +120,11 @@ endif (WIN32 OR CYGWIN)
|
||||
|
||||
add_definitions (-DWITH_BROKER)
|
||||
|
||||
if (${WITH_DLT} STREQUAL ON)
|
||||
if (WITH_DLT)
|
||||
message(STATUS "DLT_LIBDIR = ${DLT_LIBDIR}")
|
||||
link_directories(${DLT_LIBDIR})
|
||||
set (MOSQ_LIBS ${DLT_LIBRARIES})
|
||||
endif (${WITH_DLT} STREQUAL ON)
|
||||
endif (WITH_DLT)
|
||||
|
||||
set (MOSQ_LIBS ${MOSQ_LIBS} ${OPENSSL_LIBRARIES})
|
||||
# Check for getaddrinfo_a
|
||||
|
Loading…
x
Reference in New Issue
Block a user