From: Jason Ish Date: Tue, 6 Aug 2024 17:14:52 +0000 (-0600) Subject: configure: require cbindgen version of 0.16.0 or newer X-Git-Tag: suricata-7.0.7~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=926a7dae4862244da5640548bca329e35fc28126;p=thirdparty%2Fsuricata.git configure: require cbindgen version of 0.16.0 or newer --- diff --git a/configure.ac b/configure.ac index 71d77f500c..1eaf7c11a3 100644 --- a/configure.ac +++ b/configure.ac @@ -2422,7 +2422,7 @@ fi AC_PATH_PROG(CBINDGEN, cbindgen, "no") if test "x$CBINDGEN" != "xno"; then cbindgen_version=$(cbindgen --version 2>&1 | cut -d' ' -f2-) - min_cbindgen_version="0.10.0" + min_cbindgen_version="0.16.0" AS_VERSION_COMPARE([$cbindgen_version], [$min_cbindgen_version], [cbindgen_ok="no"], [cbindgen_ok="yes"],