mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
Backport changes to allow building with MinGW 64 bit compiler.
These changes have been in HEAD for some time with no ill effect. They are only being backported to 9.0, as the required WINNT version was not high enough before that.
This commit is contained in:
4
configure
vendored
4
configure
vendored
@ -18472,8 +18472,8 @@ else
|
||||
if test "${ac_cv_func_accept_arg3+set}" = set; then
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
for ac_cv_func_accept_return in 'int' 'unsigned int PASCAL'; do
|
||||
for ac_cv_func_accept_arg1 in 'int' 'unsigned int'; do
|
||||
for ac_cv_func_accept_return in 'int' 'unsigned int PASCAL' 'SOCKET'; do
|
||||
for ac_cv_func_accept_arg1 in 'int' 'unsigned int' 'SOCKET'; do
|
||||
for ac_cv_func_accept_arg2 in 'struct sockaddr *' 'const struct sockaddr *' 'void *'; do
|
||||
for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
|
Reference in New Issue
Block a user