1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

New contrib module, auth_delay.

KaiGai Kohei, with a few changes by me.
This commit is contained in:
Robert Haas
2010-11-27 07:22:25 -05:00
parent d53c1255d9
commit fe7a32fc87
7 changed files with 159 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# contrib/auth_delay/Makefile
MODULES = auth_delay
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/auth_delay
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif