mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
107a2d4204
Those two modules included references to libpq's source path, without using anything from libpq. Some copy-pastos done when each module was created are likely at the origin of those useless references (aecf5ee
for old_snapshot,fe59e56
for adminpack). Reviewed-by: Tom Lane, David Rowley Discussion: https://postgr.es/m/X+LQpfLyk7jgzUki@paquier.xyz
22 lines
476 B
Makefile
22 lines
476 B
Makefile
# contrib/old_snapshot/Makefile
|
|
|
|
MODULE_big = old_snapshot
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
time_mapping.o
|
|
|
|
EXTENSION = old_snapshot
|
|
DATA = old_snapshot--1.0.sql
|
|
PGFILEDESC = "old_snapshot - utilities in support of old_snapshot_threshold"
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/old_snapshot
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|