]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Use return instead of exit() in configure
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 12 Dec 2021 19:54:37 +0000 (14:54 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 12 Dec 2021 19:54:37 +0000 (14:54 -0500)
commitfed9cf2cb9ef4cdc3fe8b09dc2eb19e82fe1cc8b
tree762203816027cc7359bbf66c6bc4195df795ad77
parent8786f783ab2398468a8c4d8eac937fc6533d16e3
Use return instead of exit() in configure

Using exit() requires stdlib.h, which is not included.  Use return
instead.  Also add return type for main().

This back-patches commit 1c0cf52b3 into out-of-support branches,
pursuant to a newly-established project policy that we'll try to keep
out-of-support branches buildable on modern platforms for at least
ten major releases back, ensuring people can test pg_dump and psql
compatibility against servers that far back.  With the current
development branch being v15, that works out to keeping 9.2 and up
buildable as of today.

This fix is needed to get through 'configure' when using recent
macOS (and possibly other clang-based toolchains).  It seems to
be sufficient to get through 'check-world', although there are
annoyances such as compiler warnings, which will be dealt with
separately.

Original patch by Peter Eisentraut

Discussion: https://postgr.es/m/d0316012-ece7-7b7e-2d36-9c38cb77cb3b@enterprisedb.com
config/c-compiler.m4
config/c-library.m4
configure