diff options
author | Peter Eisentraut | 2019-08-21 19:33:05 +0000 |
---|---|---|
committer | Peter Eisentraut | 2019-08-21 19:36:54 +0000 |
commit | c45643d618e35ec2fe91438df15abd4f3c0d85ca (patch) | |
tree | a2d49f7a5ed6eda2147b84101259169ffe7b98c2 /configure.in | |
parent | 8f75e8e44609335e6bdd73123284682235f242a2 (diff) |
Remove configure detection of crypt()
crypt() hasn't been needed since crypt detection was removed from
PostgreSQL, so these configure checks are not necessary.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/21f88934-f00c-27f6-a9d8-7ea06d317781%402ndquadrant.com
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 33edfd765ba..805cf8617be 100644 --- a/configure.in +++ b/configure.in @@ -1118,7 +1118,6 @@ AC_SEARCH_LIBS(dlopen, dl) AC_SEARCH_LIBS(socket, [socket ws2_32]) AC_SEARCH_LIBS(shl_load, dld) AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt]) -AC_SEARCH_LIBS(crypt, crypt) AC_SEARCH_LIBS(shm_open, rt) AC_SEARCH_LIBS(shm_unlink, rt) AC_SEARCH_LIBS(clock_gettime, [rt posix4]) @@ -1273,7 +1272,6 @@ AC_HEADER_STDBOOL AC_CHECK_HEADERS(m4_normalize([ atomic.h copyfile.h - crypt.h fp_class.h getopt.h ieeefp.h @@ -1692,7 +1690,6 @@ else fi AC_REPLACE_FUNCS(m4_normalize([ - crypt dlopen fls getopt |