Assume that we have utime() and <utime.h>.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 Feb 2020 19:04:19 +0000 (14:04 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 Feb 2020 19:30:47 +0000 (14:30 -0500)
commit481c8e9232386e289fbd3e8f75893ae8d9814298
tree34c0aa0246b7333019d6a8c8326381f6d9599436
parentf88a058200a40032e88a8bfc1aea453c22d2dcb0
Assume that we have utime() and <utime.h>.

These are required by POSIX since SUSv2, and no live platforms fail
to provide them.  On Windows, utime() exists and we bring our own
<utime.h>, so we're good there too.  So remove the configure probes
and ad-hoc substitute code.  We don't need to check for utimes()
anymore either, since that was only used as a substitute.

In passing, make the Windows build include <sys/utime.h> only where
we need it, not everywhere.

This is part of a series of commits to get rid of no-longer-relevant
configure checks and dead src/port/ code.  I'm committing them separately
to make it easier to back out individual changes if they prove less
portable than I expect.

Discussion: https://postgr.es/m/15379.1582221614@sss.pgh.pa.us
configure
configure.in
src/backend/libpq/pqcomm.c
src/backend/utils/init/miscinit.c
src/include/pg_config.h.in
src/include/port/win32_msvc/utime.h
src/include/port/win32_port.h
src/tools/msvc/Solution.pm