From db549aa7f63621e1b81d32e59456303c5003b4b9 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Mon, 23 Aug 2021 15:34:12 -0700 Subject: verify-hashed-objects: add `jio verify hashed-objects` This is currently very hacky and unfinished, but does enough for some performance comparisons against a zstd-using journalctl --verify that has been hacked to return early after the first pass. It's currently rather leaky, the whole per-object-dispatch thingy is illuminating a thunk_h shortcoming and forcing addressing the issue... soon. --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index f164223..99c66d2 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,11 @@ PKG_CHECK_MODULES(CRYPTO, libcrypto) CFLAGS="$CFLAGS $CRYPTO_CFLAGS" LIBS="$LIBS $CRYPTO_LIBS" +dnl Check for libztsd +PKG_CHECK_MODULES(ZSTD, libzstd) +CFLAGS="$CFLAGS $ZSTD_CFLAGS" +LIBS="$LIBS $ZSTD_LIBS" + AC_CONFIG_SUBDIRS([ libiou ]) -- cgit v1.2.3