diff options
author | Thomas Munro | 2023-08-17 04:16:43 +0000 |
---|---|---|
committer | Thomas Munro | 2023-08-17 04:16:43 +0000 |
commit | 8fe4beaa21a4ab4d37bcfa7f8e2a8c76a741e478 (patch) | |
tree | bfdb13f3a9441db0b95db0aa843601435ee4de68 /configure.ac | |
parent | 64393a7ff9ec36164af337ae5ec33e3624d1450c (diff) |
Remove traces of Sun -lposix4.
This was a library on ancient Solaris systems, which was eventually
replaced by -lrt, itself now redundant on that OS.
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Reviewed-by: Tristan Partin <tristan@neon.tech>
Discussion: https://postgr.es/m/CA%2BhUKGLLVx4drdvXats9PxH3eeB%2BE2NkJReJ%2BRGmaOpU%3D9rgEA%40mail.gmail.com
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e020d4fbf83..440b08d1132 100644 --- a/configure.ac +++ b/configure.ac @@ -1285,7 +1285,7 @@ AC_SEARCH_LIBS(socket, [socket ws2_32]) AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt]) AC_SEARCH_LIBS(shm_open, rt) AC_SEARCH_LIBS(shm_unlink, rt) -AC_SEARCH_LIBS(clock_gettime, [rt posix4]) +AC_SEARCH_LIBS(clock_gettime, rt) # Cygwin: AC_SEARCH_LIBS(shmget, cygipc) # *BSD: |