mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 10:09:35 -05:00
Use SSPI authentication to allow connections exclusively from the OS
user that launched the test suite. This closes on Windows the
vulnerability that commit be76a6d39e
closed on other platforms. Users of "make installcheck" or custom test
harnesses can run "pg_regress --config-auth=DATADIR" to activate the
same authentication configuration that "make check" would use.
Back-patch to 9.0 (all supported versions).
Security: CVE-2014-0067
28 lines
733 B
Makefile
28 lines
733 B
Makefile
# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.15 2007/11/10 23:59:50 momjian Exp $
|
|
|
|
MODULE_big = dblink
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
OBJS = dblink.o
|
|
SHLIB_LINK = $(libpq)
|
|
|
|
DATA_built = dblink.sql
|
|
DATA = uninstall_dblink.sql
|
|
REGRESS = paths dblink
|
|
REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB) --dlpath=$(top_builddir)/src/test/regress \
|
|
--create-role=dblink_regression_test
|
|
EXTRA_CLEAN = sql/paths.sql expected/paths.out
|
|
|
|
|
|
# the db name is hard-coded in the tests
|
|
override USE_MODULE_DB =
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/dblink
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|