Add BSD authentication method.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 34c33a1f00259ce5e3e1d1b4a784037adfca6057
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2016-04-08T17:52:06Z
Releases: 9.6.0
Add BSD authentication method.

Create a "bsd" auth method that works the same as "password" so far as
clients are concerned, but calls the BSD Authentication service to
check the password.  This is currently only available on OpenBSD.

Marisa Emerson, reviewed by Thomas Munro

Files

PathChange+/−
configure modified +48 −0
configure.in modified +14 −0
doc/src/sgml/client-auth.sgml modified +45 −0
doc/src/sgml/installation.sgml modified +11 −0
src/backend/libpq/auth.c modified +54 −0
src/backend/libpq/hba.c modified +6 −0
src/bin/initdb/initdb.c modified +6 −0
src/include/libpq/hba.h modified +1 −0
src/include/pg_config.h.in modified +3 −0
src/include/pg_config.h.win32 modified +3 −0

Documentation touched