Merge pull request #3325 from ffontaine/master
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 29 Oct 2019 14:43:42 +0000 (15:43 +0100)
committerGitHub <noreply@github.com>
Tue, 29 Oct 2019 14:43:42 +0000 (15:43 +0100)
configure.ac: fix protobuf/util/time_util.h detection

configure.ac

index 34386d0..59a7f35 100644 (file)
@@ -2722,6 +2722,7 @@ if test "x$withval" != "xno"; then
   else
     AC_MSG_RESULT([no])
     with_libgrpcpp="no (requires C++11 support)"
+    with_libprotobuf="no (<google/protobuf/util/time_util.h> requires C++11 support)"
   fi
 fi
 
@@ -4568,7 +4569,7 @@ if test "x$withval" != "xno"; then
   AC_CHECK_LIB([protobuf], [main],
     [
       SAVE_CPPFLAGS="$CPPFLAGS"
-      CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
+      CPPFLAGS="-std=c++11 $with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
       if test "x$PROTOBUF_LIBS" = "x"
       then
         PROTOBUF_LIBS="-lprotobuf"