Repository: mesos Updated Branches: refs/heads/master 0086fcc5a -> 30eb22161
Made protobuf version 3+ a hard requirement for building Mesos. Review: https://reviews.apache.org/r/64822/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/30eb2216 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/30eb2216 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/30eb2216 Branch: refs/heads/master Commit: 30eb221614d851f252f7d008c157dafa8ac4ac05 Parents: 0086fcc Author: Chun-Hung Hsiao <[email protected]> Authored: Fri Dec 22 15:57:01 2017 -0800 Committer: Jie Yu <[email protected]> Committed: Fri Dec 22 15:57:01 2017 -0800 ---------------------------------------------------------------------- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/30eb2216/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 5ffc33a..6abec5f 100644 --- a/configure.ac +++ b/configure.ac @@ -1477,7 +1477,7 @@ if test "x$without_bundled_protobuf" = "xyes" || \ # Check for protobuf. - AC_CHECK_HEADERS([google/protobuf/message.h], [found_protobuf=yes], + AC_CHECK_HEADERS([google/protobuf/map.h], [found_protobuf=yes], [found_protobuf=no]) if test "x$found_protobuf" = "xyes"; then @@ -1520,7 +1520,7 @@ if test "x$without_bundled_protobuf" = "xyes" || \ AC_MSG_ERROR([cannot find protobuf ------------------------------------------------------------------- You have requested the use of a non-bundled protobuf but no suitable -protobuf could be found. +protobuf (version 3+) could be found. You may want specify the location of protobuf by providing a prefix path via --with-protobuf=DIR, or check that the path you provided is
