From acf6b48fbba3c076839e55ceb426d1a54aa750f9 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 14 Aug 2021 18:15:50 -0700 Subject: build: add libcrypto dependency Preparatory commit for report-entry-arrays, I used libcrypto for SHA1 "perfect" hashing of the payloads. This way I didn't need to keep the payloads themselves around for counting duplicates, the SHA1 digests suffice. --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 3a88409..da6d853 100644 --- a/configure.ac +++ b/configure.ac @@ -13,6 +13,11 @@ PKG_CHECK_MODULES(URING, liburing) CFLAGS="$CFLAGS $URING_CFLAGS" LIBS="$LIBS $URING_LIBS" +dnl Check for libcrypto +PKG_CHECK_MODULES(CRYPTO, libcrypto) +CFLAGS="$CFLAGS $CRYPTO_CFLAGS" +LIBS="$LIBS $CRYPTO_LIBS" + AC_CONFIG_SUBDIRS([ libiou ]) -- cgit v1.2.3