From 2e465cfdc76ebbdf3fea124ee9d22fc099ee980d Mon Sep 17 00:00:00 2001 From: Ilya Lipnitskiy Date: Wed, 5 Nov 2014 01:00:36 -0800 Subject: [PATCH] configure.ac: Bump min protobuf version to 2.6.0 for oneof parsing support --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bc9e588..a3e1633 100644 --- a/configure.ac +++ b/configure.ac @@ -47,7 +47,7 @@ AC_ARG_ENABLE([protoc], AS_HELP_STRING([--disable-protoc], [Disable building protoc_c (also disables tests)])) if test "x$enable_protoc" != "xno"; then AC_LANG_PUSH([C++]) - PKG_CHECK_MODULES([protobuf], [protobuf >= 2.5.0]) + PKG_CHECK_MODULES([protobuf], [protobuf >= 2.6.0]) save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$save_CPPFLAGS $protobuf_CFLAGS"