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
This commit is contained in:
Tom Lane 2021-12-12 14:54:26 -05:00
parent 30ffdd24d7
commit 47fca011b8
3 changed files with 15 additions and 5 deletions

View File

@ -84,8 +84,10 @@ int does_int64_work()
return 0;
return 1;
}
int
main() {
exit(! does_int64_work());
return (! does_int64_work());
}],
[Ac_cachevar=yes],
[Ac_cachevar=no],

View File

@ -255,8 +255,10 @@ int does_int64_snprintf_work()
return 0; /* either multiply or snprintf is busted */
return 1;
}
int
main() {
exit(! does_int64_snprintf_work());
return (! does_int64_snprintf_work());
}],
[pgac_cv_snprintf_long_long_int_format=$pgac_format; break],
[],

12
configure vendored
View File

@ -13757,8 +13757,10 @@ int does_int64_work()
return 0;
return 1;
}
int
main() {
exit(! does_int64_work());
return (! does_int64_work());
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
@ -13839,8 +13841,10 @@ int does_int64_work()
return 0;
return 1;
}
int
main() {
exit(! does_int64_work());
return (! does_int64_work());
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
@ -13915,8 +13919,10 @@ int does_int64_snprintf_work()
return 0; /* either multiply or snprintf is busted */
return 1;
}
int
main() {
exit(! does_int64_snprintf_work());
return (! does_int64_snprintf_work());
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :