Re: Generating configure from configure.ac

From: Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
To: Tatsuo Ishii <ishii(at)postgresql(dot)org>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Generating configure from configure.ac
Date: 2024-11-26 04:28:58
Message-ID: CA+hUKGJztUxgFwH7itOqAtDF3uAYKi6r8sUO7oOUrL3a7iTyDA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Tue, Nov 26, 2024 at 2:29 PM Tatsuo Ishii <ishii(at)postgresql(dot)org> wrote:
> -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
> +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))

. o O ( I wonder if that missing Debian/Ubuntu bugfix[1] is why our
AIX animals have -D_LARGE_FILES=1 jammed into $CC, even though
AC_SYS_LARGEFILES claims to understand AIX )

[1] https://sources.debian.org/patches/autoconf2.69/2.69-3.1/

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hayato Kuroda (Fujitsu) 2024-11-26 05:03:01 RE: Parallel heap vacuum
Previous Message Peter Smith 2024-11-26 04:16:29 Re: Improve the error message for logical replication of regular column to generated column.