libpq: Remove code for SCM credential authentication
authorMichael Paquier <michael@paquier.xyz>
Fri, 17 Mar 2023 01:52:26 +0000 (10:52 +0900)
committerMichael Paquier <michael@paquier.xyz>
Fri, 17 Mar 2023 01:52:26 +0000 (10:52 +0900)
commit98ae2c84a49e45c0434c7e1a55bb2fc71582f561
tree3ddec78b699eacf8ff0cef77aa76a938b1b8c6c4
parent10b6745d313c6e8f3523306d3d415c57c9039c5d
libpq: Remove code for SCM credential authentication

Support for SCM credential authentication has been removed in the
backend in 9.1, and libpq has kept some code to handle it for
compatibility.

Commit be4585b, that did the cleanup of the backend code, has done
so because the code was not really portable originally.  And, as there
are likely little chances that this is used these days, this removes the
remaining code from libpq.  An error will now be raised by libpq if
attempting to connect to a server that returns AUTH_REQ_SCM_CREDS,
instead.

References to SCM credential authentication are removed from the
protocol documentation.  This removes some meson and configure checks.

Author: Michael Paquier
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/ZBLH8a4otfqgd6Kn@paquier.xyz
configure
configure.ac
doc/src/sgml/libpq.sgml
doc/src/sgml/protocol.sgml
meson.build
src/include/libpq/pqcomm.h
src/include/pg_config.h.in
src/interfaces/libpq/fe-auth.c
src/interfaces/libpq/fe-connect.c
src/tools/msvc/Solution.pm