From 8479da3033ce4af09e0c8adb0fcbe2deda46924a Mon Sep 17 00:00:00 2001 From: Konstantin Podshumok Date: Fri, 21 Aug 2020 14:39:05 +0300 Subject: [PATCH] cmake: unbundled protobuf: don't expect old c++ API by default Signed-off-by: Konstantin Podshumok --- contrib/libhdfs3-cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/libhdfs3-cmake/CMakeLists.txt b/contrib/libhdfs3-cmake/CMakeLists.txt index de69ccdf9c6..ab4857f0387 100644 --- a/contrib/libhdfs3-cmake/CMakeLists.txt +++ b/contrib/libhdfs3-cmake/CMakeLists.txt @@ -1,5 +1,5 @@ if (ENABLE_PROTOBUF AND NOT USE_INTERNAL_PROTOBUF_LIBRARY) - option(PROTOBUF_OLD_ABI_COMPAT "Set to ON for compatiability with external protobuf which was compiled old C++ ABI" ON) + option(PROTOBUF_OLD_ABI_COMPAT "Set to ON for compatiability with external protobuf which was compiled old C++ ABI" OFF) endif() if (PROTOBUF_OLD_ABI_COMPAT)