1 From 2277f2c15744ad1cc5cd1ecc50a43108e50530a2 Mon Sep 17 00:00:00 2001
2 From: Bruno Haible <bruno@clisp.org>
3 Date: Wed, 19 Apr 2023 14:17:24 -0700
4 Subject: [PATCH 19/29] AC_SYS_YEAR2038_REQUIRED: Fix configure failure with
7 * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_PROBE): Distinguish the results
8 "support not detected" and "supported through gnulib". If the result is
9 "supported through gnulib", don't fail.
11 Upstream-Status: Backport
12 Signed-off-by: Khem Raj <raj.khem@gmail.com>
14 lib/autoconf/specific.m4 | 13 +++++++++++++
15 1 file changed, 13 insertions(+)
17 diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4
18 index 3bf1a0ed1..f411695fe 100644
19 --- a/lib/autoconf/specific.m4
20 +++ b/lib/autoconf/specific.m4
21 @@ -323,11 +323,24 @@ AC_DEFUN([_AC_SYS_LARGEFILE_PROBE],
22 test $ac_opt_found = no || break
25 + dnl Gnulib implements large file support for native Windows, based on the
26 + dnl variables WINDOWS_64_BIT_OFF_T, WINDOWS_64_BIT_ST_SIZE.
27 + m4_ifdef([gl_LARGEFILE], [
28 + AC_REQUIRE([AC_CANONICAL_HOST])
29 + if test $ac_opt_found != yes; then
32 + [ac_cv_sys_largefile_opts="supported through gnulib"
37 test $ac_opt_found = yes || ac_cv_sys_largefile_opts="support not detected"])
40 AS_CASE([$ac_cv_sys_largefile_opts],
42 + ["supported through gnulib"], [],
43 ["support not detected"],
45 AS_IF([test $ac_largefile_required,$ac_year2038_required != no,no],