Skip to content

Commit

Permalink
Fix errors when building via docker from MacOS (#582)
Browse files Browse the repository at this point in the history
* fix docker builder on macos

* remove extra comments
  • Loading branch information
mfdii authored Apr 17, 2019
1 parent acb582a commit 05bb4a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 2 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
3 changes: 1 addition & 2 deletions userspace/falco/falco_outputs.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ class falco_outputs : public falco_common
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";
Expand Down

0 comments on commit 05bb4a8

Please sign in to comment.