mirror of
https://github.com/postgres/postgres.git
synced 2025-06-01 00:01:20 -04: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 be76a6d39e2832d4b88c0e1cc381aa44a7f86881 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
30 lines
692 B
Makefile
30 lines
692 B
Makefile
# contrib/dblink/Makefile
|
|
|
|
MODULE_big = dblink
|
|
OBJS = dblink.o
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
SHLIB_LINK = $(libpq)
|
|
SHLIB_PREREQS = submake-libpq
|
|
|
|
EXTENSION = dblink
|
|
DATA = dblink--1.0.sql dblink--unpackaged--1.0.sql
|
|
|
|
REGRESS = paths dblink
|
|
REGRESS_OPTS = --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
|