mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Reported-by: Michael Paquier Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz Backpatch-through: 12
22 lines
515 B
Makefile
22 lines
515 B
Makefile
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
|
|
|
|
# ldap_password_func Makefile
|
|
|
|
export with_ldap
|
|
|
|
MODULE_big = ldap_password_func
|
|
OBJS = ldap_password_func.o $(WIN32RES)
|
|
PGFILEDESC = "set hook to mutate ldapbindpasswd"
|
|
|
|
TAP_TESTS = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = src/test/modules/ldap_password_func
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|