Fix errors when building via docker from MacOS (#582)

* fix docker builder on macos

* remove extra comments
This commit is contained in:
Michael Ducy 2019-04-17 04:14:16 -07:00 committed by GitHub
parent acb582af15
commit 05bb4a84ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View File

@ -241,11 +241,9 @@ else()
message(STATUS "Using bundled yaml-cpp in '${YAMLCPP_SRC}'")
set(YAMLCPP_LIB "${YAMLCPP_SRC}/libyaml-cpp.a")
set(YAMLCPP_INCLUDE_DIR "${YAMLCPP_SRC}/include")
# Once the next version of yaml-cpp is released (first version not requiring
# boost), we can switch to that and no longer pull from github.
ExternalProject_Add(yamlcpp
GIT_REPOSITORY "https://github.com/jbeder/yaml-cpp.git"
GIT_TAG "7d2873ce9f2202ea21b6a8c5ecbc9fe38032c229"
URL "https://s3.amazonaws.com/download.draios.com/dependencies/yaml-cpp-yaml-cpp-0.6.2.tar.gz"
URL_MD5 "5b943e9af0060d0811148b037449ef82"
BUILD_IN_SOURCE 1
INSTALL_COMMAND "")
endif()

View File

@ -89,9 +89,8 @@ private:
token_bucket m_notifications_tb;
bool m_buffered;
bool m_time_format_iso_8601;
bool m_json_output;
bool m_time_format_iso_8601;
std::string m_lua_add_output = "add_output";
std::string m_lua_output_event = "output_event";