Github user calebj commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/170#discussion_r150017488
--- Diff: .travis.yml ---
@@ -84,4 +84,4 @@ matrix:
- package='libpng'; [[ $(brew ls --versions ${package}) ]] && {
brew outdated ${package} || brew upgrade ${package}; } || brew install
${package}
script:
- - mkdir ./build && cd ./build && cmake .. ${CMAKE_BUILD_OPTIONS} && make
-j2 VERBOSE=1 && make test ARGS="-j2 --output-on-failure" && make linter &&
make apache-rat && make docs
+ - mkdir ./build && cd ./build && cmake -DENABLE_PCAP=TRUE ..
${CMAKE_BUILD_OPTIONS} && make -j2 VERBOSE=1 && make test ARGS="-j2
--output-on-failure" && make linter && make apache-rat && make docs
--- End diff --
I think this is better off in CMAKE_BUILD_OPTIONS above
---