summaryrefslogtreecommitdiff
path: root/src/backend/libpq/crypt.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-08-21 21:33:05 +0200
committerPeter Eisentraut <peter@eisentraut.org>2019-08-21 21:36:54 +0200
commitc45643d618e35ec2fe91438df15abd4f3c0d85ca (patch)
treea2d49f7a5ed6eda2147b84101259169ffe7b98c2 /src/backend/libpq/crypt.c
parent8f75e8e44609335e6bdd73123284682235f242a2 (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 'src/backend/libpq/crypt.c')
-rw-r--r--src/backend/libpq/crypt.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/libpq/crypt.c b/src/backend/libpq/crypt.c
index 6e273dc9bb9..784fb227aa2 100644
--- a/src/backend/libpq/crypt.c
+++ b/src/backend/libpq/crypt.c
@@ -14,9 +14,6 @@
#include "postgres.h"
#include <unistd.h>
-#ifdef HAVE_CRYPT_H
-#include <crypt.h>
-#endif
#include "catalog/pg_authid.h"
#include "common/md5.h"