From: Jason Ish Date: Thu, 13 Feb 2025 17:35:46 +0000 (-0600) Subject: configure: require minimum version of cbindgen to be 0.20.0 X-Git-Tag: suricata-8.0.0-beta1~431 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12584%2Fhead;p=thirdparty%2Fsuricata.git configure: require minimum version of cbindgen to be 0.20.0 0.10.0 doesn't work anymore. In some combinations 0.20.0 doesn't work either, however it does work in our CI jobs. --- diff --git a/configure.ac b/configure.ac index 0ebdc9e67a..290d997152 100644 --- a/configure.ac +++ b/configure.ac @@ -2273,7 +2273,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.20.0" AS_VERSION_COMPARE([$cbindgen_version], [$min_cbindgen_version], [cbindgen_ok="no"], [cbindgen_ok="yes"],