diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-15 20:45:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-15 20:45:42 +0000 |
commit | 4335281604126e31abb31d2c2320e353dd86e990 (patch) | |
tree | aa717176e8ad28603844f359f20d8277c58013eb /src | |
parent | 798fe1d513ce4de46257fa27871f3beeb9e8de35 (diff) | |
download | postgresql-4335281604126e31abb31d2c2320e353dd86e990.tar.gz postgresql-4335281604126e31abb31d2c2320e353dd86e990.zip |
Actually, I'll bet the mingw problem is lack of $(BE_DLLLIBS) ...
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/walreceiver/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/replication/walreceiver/Makefile b/src/backend/replication/walreceiver/Makefile index b7e01be4155..cc7efe83b27 100644 --- a/src/backend/replication/walreceiver/Makefile +++ b/src/backend/replication/walreceiver/Makefile @@ -4,7 +4,7 @@ # Makefile for src/backend/replication/walreceiver # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/replication/walreceiver/Makefile,v 1.2 2010/01/15 20:34:11 tgl Exp $ +# $PostgreSQL: pgsql/src/backend/replication/walreceiver/Makefile,v 1.3 2010/01/15 20:45:42 tgl Exp $ # #------------------------------------------------------------------------- @@ -15,8 +15,10 @@ include $(top_builddir)/src/Makefile.global override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) OBJS = walreceiver.o -SHLIB_LINK = $(libpq) -NAME = walreceiver + +SHLIB_LINK = $(libpq) $(BE_DLLLIBS) + +NAME := walreceiver all: submake-libpq all-shared-lib |