X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=1f347759035931da623ddaaf4d267dac5d161ab8;hb=15bbce792a3698d5869cf2dd54518ddc68bb14d7;hp=606c4effa4e3d60351883066e97018d156d7435d;hpb=0c5e4282f0f4e332499feac3b07ce0f29e3d2b1c;p=collectd.git diff --git a/configure.ac b/configure.ac index 606c4eff..1f347759 100644 --- a/configure.ac +++ b/configure.ac @@ -57,12 +57,17 @@ AC_PROG_YACC PKG_PROG_PKG_CONFIG AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no]) -AC_CHECK_HEADERS([google/protobuf-c/protobuf-c.h], - [have_protobuf_c_h="yes"], - [have_protobuf_c_h="no"]) -if test "x$have_protoc_c" = "xyes" && test "x$have_protobuf_c_h" != "xyes" +if test "x$have_protoc_c" = "xno" then - have_protoc_c="no (unable to find )" + have_protoc_c="no (protoc-c compiler not found)" +else + AC_CHECK_HEADERS([google/protobuf-c/protobuf-c.h], + [have_protobuf_c_h="yes"], + [have_protobuf_c_h="no"]) + if test "x$have_protobuf_c_h" = "xno" + then + have_protoc_c="no ( not found)" + fi fi AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")