summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Keeler <jacob.keeler@livioradio.com>2019-09-04 11:24:11 -0400
committerGitHub <noreply@github.com>2019-09-04 11:24:11 -0400
commitd45d5da29a4058d5fcb8cb411490064e8380d2e4 (patch)
treee56744e483be436d99542ca89ade15dd6cdedee1
parentbc8288d775d8d088c203ba9500ed6fcb9fab95b4 (diff)
parent226d61f75a79699ddef547ae247690ab14ea275f (diff)
downloadsdl_core-d45d5da29a4058d5fcb8cb411490064e8380d2e4.tar.gz
Merge pull request #3013 from smartdevicelink/fix/build_with_disabled_logger
Fix build with disabled logger.
-rw-r--r--src/components/protocol_handler/CMakeLists.txt1
-rw-r--r--src/components/utils/include/utils/stl_utils.h1
-rw-r--r--tools/policy_table_validator/CMakeLists.txt1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/components/protocol_handler/CMakeLists.txt b/src/components/protocol_handler/CMakeLists.txt
index b4123aaf06..90dd2c9eda 100644
--- a/src/components/protocol_handler/CMakeLists.txt
+++ b/src/components/protocol_handler/CMakeLists.txt
@@ -38,6 +38,7 @@ include_directories(
${CMAKE_BINARY_DIR}/src/components/
${LOG4CXX_INCLUDE_DIRECTORY}
${BSON_INCLUDE_DIRECTORY}
+ ${BOOST_INCLUDE_DIR}
)
set(PATHS
diff --git a/src/components/utils/include/utils/stl_utils.h b/src/components/utils/include/utils/stl_utils.h
index 4a4e3d2fe8..48511e6fb3 100644
--- a/src/components/utils/include/utils/stl_utils.h
+++ b/src/components/utils/include/utils/stl_utils.h
@@ -32,6 +32,7 @@
#ifndef SRC_COMPONENTS_UTILS_INCLUDE_UTILS_STL_UTILS_H_
#define SRC_COMPONENTS_UTILS_INCLUDE_UTILS_STL_UTILS_H_
+#include <cstddef>
#include "utils/macro.h"
namespace utils {
diff --git a/tools/policy_table_validator/CMakeLists.txt b/tools/policy_table_validator/CMakeLists.txt
index d1928810f8..6b9f26f01a 100644
--- a/tools/policy_table_validator/CMakeLists.txt
+++ b/tools/policy_table_validator/CMakeLists.txt
@@ -5,6 +5,7 @@ include_directories(
${CMAKE_SOURCE_DIR}/src/components/utils/include/
${COMPONENTS_DIR}/smart_objects/include/
${JSONCPP_INCLUDE_DIRECTORY}
+ ${BOOST_INCLUDE_DIR}
)
message(STATUS "Using ${EXTENDED_POLICY} policy mode")