Bump libnDPI to 37f918322c0a489b5143a987c8f1a44a6f78a6f3 and updated flow json schema file.

* export env vars AR / CMAKE_C_COMPILER_AR and RANLIB / CMAKE_C_COMPILER_RANLIB while building libnDPI
 * nDPId check API version during startup (macro vs. function call) and print a warning if they are different

Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
Toni Uhlig
2022-09-06 14:50:46 +02:00
parent c5c7d83c97
commit f9bd7d29ce
375 changed files with 16651 additions and 15694 deletions

View File

@@ -14,6 +14,8 @@ cat <<EOF
------ environment variables ------
CC=${CC:-}
CXX=${CXX:-}
AR=${AR:-}
RANLIB=${RANLIB:-}
PKG_CONFIG=${PKG_CONFIG:-}
CFLAGS=${CFLAGS:-}
LDFLAGS=${LDFLAGS:-}
@@ -40,7 +42,10 @@ if [ ! -z "${CROSS_COMPILE_TRIPLET}" ]; then
else
HOST_ARG=""
fi
./autogen.sh --enable-option-checking=fatal --prefix="${DEST_INSTALL}" --with-only-libndpi ${HOST_ARG} ${ADDITIONAL_ARGS}
./autogen.sh --enable-option-checking=fatal \
--prefix="${DEST_INSTALL}" --exec-prefix="${DEST_INSTALL}" \
--includedir="${DEST_INSTALL}/include" --libdir="${DEST_INSTALL}/lib" \
--with-only-libndpi ${HOST_ARG} ${ADDITIONAL_ARGS}
${MAKE_PROGRAM} install
rm -f "${LOCKFILE}"