mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
1e95bbc870
dblink and postgres_fdw use SHLIB_PREREQS = submake-libpq to build libpq
first. This doesn't work in a PGXS build, because there is no libpq to
build. So just omit setting SHLIB_PREREQS in this case.
Note that PGXS users can still use SHLIB_PREREQS (although it is not
documented). The problem here is only that contrib modules can be built
in-tree or using PGXS, and the prerequisite is only applicable in the
former case.
Commit 6697aa2bc2
previously attempted to
address this by creating a somewhat fake submake-libpq target in
Makefile.global. That was not the right fix, and it was also done in a
nonportable way, so revert that.
26 lines
600 B
Makefile
26 lines
600 B
Makefile
# contrib/postgres_fdw/Makefile
|
|
|
|
MODULE_big = postgres_fdw
|
|
OBJS = postgres_fdw.o option.o deparse.o connection.o $(WIN32RES)
|
|
PGFILEDESC = "postgres_fdw - foreign data wrapper for PostgreSQL"
|
|
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
SHLIB_LINK = $(libpq)
|
|
|
|
EXTENSION = postgres_fdw
|
|
DATA = postgres_fdw--1.0.sql
|
|
|
|
REGRESS = postgres_fdw
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
SHLIB_PREREQS = submake-libpq
|
|
subdir = contrib/postgres_fdw
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|