diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-12-20 17:13:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-12-20 17:13:41 +0000 |
commit | da59a70c094d6a39a19ca75ade38ef06a71b6c64 (patch) | |
tree | 1b7202b94529755cf9c3020916050f3626953428 /src/backend/libpq/auth.c | |
parent | 59bffa370737fcd8cb04762417c2eb4eeeee774f (diff) | |
download | postgresql-da59a70c094d6a39a19ca75ade38ef06a71b6c64.tar.gz postgresql-da59a70c094d6a39a19ca75ade38ef06a71b6c64.zip |
Remove direct inclusions of <com_err.h> as well as configure test for
its presence. This amounts to desupporting Kerberos 5 releases 1.0.*,
which is small loss, and simplifies use of our Kerberos code on platforms
with Red-Hat-style include file layouts. Per gripe from John Gray and
followup discussion.
Diffstat (limited to 'src/backend/libpq/auth.c')
-rw-r--r-- | src/backend/libpq/auth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index b374077ee41..35fe2801aeb 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.119 2004/10/12 21:54:38 petere Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.120 2004/12/20 17:13:40 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -150,7 +150,6 @@ pg_krb4_recvauth(Port *port) */ #include <krb5.h> -#include <com_err.h> /* * pg_an_to_ln -- return the local name corresponding to an authentication |