diff options
| author | Magnus Hagander <magnus@hagander.net> | 2014-01-15 17:24:01 +0100 |
|---|---|---|
| committer | Magnus Hagander <magnus@hagander.net> | 2014-01-19 17:05:01 +0100 |
| commit | 98de86e4221a418d670db86bf28ff15e880beadc (patch) | |
| tree | aeba76356dfe639d4e9aff48875062f1defb16cc /src/include/pg_config.h.win32 | |
| parent | 4b8f2859ccc4fe1e9b66fbdb332b830b69a9d6cf (diff) | |
| download | postgresql-98de86e4221a418d670db86bf28ff15e880beadc.tar.gz | |
Remove support for native krb5 authentication
krb5 has been deprecated since 8.3, and the recommended way to do
Kerberos authentication is using the GSSAPI authentication method
(which is still fully supported).
libpq retains the ability to identify krb5 authentication, but only
gives an error message about it being unsupported. Since all authentication
is initiated from the backend, there is no need to keep it at all
in the backend.
Diffstat (limited to 'src/include/pg_config.h.win32')
| -rw-r--r-- | src/include/pg_config.h.win32 | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index b69414fd48..19ef4c1a9f 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -193,18 +193,6 @@ /* Define to 1 if you have isinf(). */ #define HAVE_ISINF 1 -/* Define to 1 if `e_data' is member of `krb5_error'. */ -/* #undef HAVE_KRB5_ERROR_E_DATA */ - -/* Define to 1 if `text.data' is member of `krb5_error'. */ -/* #undef HAVE_KRB5_ERROR_TEXT_DATA */ - -/* Define to 1 if `client' is member of `krb5_ticket'. */ -/* #undef HAVE_KRB5_TICKET_CLIENT */ - -/* Define to 1 if `enc_part2' is member of `krb5_ticket'. */ -/* #undef HAVE_KRB5_TICKET_ENC_PART2 */ - /* Define to 1 if you have the <langinfo.h> header file. */ /* #undef HAVE_LANGINFO_H */ @@ -541,9 +529,6 @@ /* Define to the appropriate snprintf format for 64-bit ints, if any. */ #define INT64_FORMAT "%lld" -/* Define to build with Kerberos 5 support. (--with-krb5) */ -/* #undef KRB5 */ - /* Define to 1 if `locale_t' requires <xlocale.h>. */ /* #undef LOCALE_T_IN_XLOCALE */ |
