From d1bac75039ce86125e1c5c4a20e3a39eb4324a7e Mon Sep 17 00:00:00 2001 From: Alexey Gladkov Date: Tue, 29 Dec 2020 01:08:10 +0300 Subject: Fix LFS on 32-bit systems Signed-off-by: Alexey Gladkov --- configure.ac | 2 ++ src/hmac256.c | 1 + 2 files changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 10ed8ce4..49510dc4 100644 --- a/configure.ac +++ b/configure.ac @@ -82,6 +82,8 @@ AC_CANONICAL_HOST AM_MAINTAINER_MODE AM_SILENT_RULES +AC_SYS_LARGEFILE + AC_ARG_VAR(SYSROOT,[locate config scripts also below that directory]) AH_TOP([ diff --git a/src/hmac256.c b/src/hmac256.c index 2d66079c..5722fce1 100644 --- a/src/hmac256.c +++ b/src/hmac256.c @@ -44,6 +44,7 @@ identically to the one used by Libcgrypt for testing this included module. */ +#include #ifdef STANDALONE #include -- 2.25.4