]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Add check for large files in meson.build
authorMichael Paquier <michael@paquier.xyz>
Wed, 12 Nov 2025 00:02:29 +0000 (09:02 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 12 Nov 2025 00:02:29 +0000 (09:02 +0900)
commit434b605745a1a0337c009a79cd7c6c15867fa6c5
tree1c858d3537882fb1193eba02109b6693027e9628
parent4b324845ba5d24682b9b3708a769f00d160afbd7
Add check for large files in meson.build

A similar check existed in the MSVC scripts that have been removed in
v17 by 1301c80b2167, but nothing of the kind was checked in meson when
building with a 4-byte off_t.

This commit adds a check to fail the builds when trying to use a
relation file size higher than 1GB when off_t is 4 bytes, like
./configure, rather than detecting these failures at runtime because the
code is not able to handle large files in this case.

Backpatch down to v16, where meson has been introduced.

Discussion: https://postgr.es/m/aQ0hG36IrkaSGfN8@paquier.xyz
Backpatch-through: 16
meson.build