From patchwork Mon Aug 19 20:25:07 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vitaly Chikunov X-Patchwork-Id: 11101863 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2029913A0 for ; Mon, 19 Aug 2019 20:25:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 09DC7214DA for ; Mon, 19 Aug 2019 20:25:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728136AbfHSUZN (ORCPT ); Mon, 19 Aug 2019 16:25:13 -0400 Received: from vmicros1.altlinux.org ([194.107.17.57]:45498 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728018AbfHSUZN (ORCPT ); Mon, 19 Aug 2019 16:25:13 -0400 Received: from imap.altlinux.org (imap.altlinux.org [194.107.17.38]) by vmicros1.altlinux.org (Postfix) with ESMTP id F3CE172CCD5; Mon, 19 Aug 2019 23:25:11 +0300 (MSK) Received: from beacon.altlinux.org (unknown [185.6.174.98]) by imap.altlinux.org (Postfix) with ESMTPSA id C50BF4A4AF6; Mon, 19 Aug 2019 23:25:11 +0300 (MSK) From: Vitaly Chikunov To: Mimi Zohar , Dmitry Kasatkin , linux-integrity@vger.kernel.org Subject: [PATCH] ima-evm-utils: Enable large-file support Date: Mon, 19 Aug 2019 23:25:07 +0300 Message-Id: <20190819202507.27735-1-vt@altlinux.org> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Sender: linux-integrity-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-integrity@vger.kernel.org Some architectures require special measures to access large files (LFS). Add `AC_SYS_LARGEFILE' to `configure.ac' to handle this. It seems that ABI is not changed with this. Signed-off-by: Vitaly Chikunov Reviewed-by: Bruno Meneguele --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 3f21ba4..02bd6f8 100644 --- a/configure.ac +++ b/configure.ac @@ -8,6 +8,7 @@ AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_HOST AC_USE_SYSTEM_EXTENSIONS +AC_SYS_LARGEFILE # Checks for programs. AC_PROG_CC