Tidy previous commit and add to changelog.

pull/1203/head
Roger A. Light 7 years ago
parent bb6da93e93
commit 1d4bf55165

@ -99,14 +99,15 @@ endif (WITH_THREADING)
option(DOCUMENTATION "Build documentation?" ON) 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}") message(STATUS "WITH_DLT = ${WITH_DLT}")
if (${WITH_DLT} STREQUAL ON) if (WITH_DLT)
#find_package(DLT REQUIRED) #find_package(DLT REQUIRED)
find_package(PkgConfig) find_package(PkgConfig)
pkg_check_modules(DLT "automotive-dlt >= 2.11") pkg_check_modules(DLT "automotive-dlt >= 2.11")
add_definitions("-DWITH_DLT") add_definitions("-DWITH_DLT")
endif (${WITH_DLT} STREQUAL ON) endif (WITH_DLT)
# ======================================== # ========================================
# Include projects # Include projects
# ======================================== # ========================================

@ -16,6 +16,7 @@ Broker features:
DH support DH support
- Add explicit support for TLS v1.3. - Add explicit support for TLS v1.3.
- Drop support for TLS v1.0. - Drop support for TLS v1.0.
- Add support for Automotive DLT logging.
Client library features: Client library features:
- Add mosquitto_subscribe_multiple() for sending subscriptions to multiple - Add mosquitto_subscribe_multiple() for sending subscriptions to multiple

@ -120,11 +120,11 @@ endif (WIN32 OR CYGWIN)
add_definitions (-DWITH_BROKER) add_definitions (-DWITH_BROKER)
if (${WITH_DLT} STREQUAL ON) if (WITH_DLT)
message(STATUS "DLT_LIBDIR = ${DLT_LIBDIR}") message(STATUS "DLT_LIBDIR = ${DLT_LIBDIR}")
link_directories(${DLT_LIBDIR}) link_directories(${DLT_LIBDIR})
set (MOSQ_LIBS ${DLT_LIBRARIES}) set (MOSQ_LIBS ${DLT_LIBRARIES})
endif (${WITH_DLT} STREQUAL ON) endif (WITH_DLT)
set (MOSQ_LIBS ${MOSQ_LIBS} ${OPENSSL_LIBRARIES}) set (MOSQ_LIBS ${MOSQ_LIBS} ${OPENSSL_LIBRARIES})
# Check for getaddrinfo_a # Check for getaddrinfo_a

Loading…
Cancel
Save