Skip to content

Commit 4335281

Browse files
committed
Actually, I'll bet the mingw problem is lack of $(BE_DLLLIBS) ...
1 parent 798fe1d commit 4335281

File tree

1 file changed

+5
-3
lines changed
  • src/backend/replication/walreceiver

1 file changed

+5
-3
lines changed

src/backend/replication/walreceiver/Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for src/backend/replication/walreceiver
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/replication/walreceiver/Makefile,v 1.2 2010/01/15 20:34:11 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/replication/walreceiver/Makefile,v 1.3 2010/01/15 20:45:42 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -15,8 +15,10 @@ include $(top_builddir)/src/Makefile.global
1515
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
1616

1717
OBJS = walreceiver.o
18-
SHLIB_LINK = $(libpq)
19-
NAME = walreceiver
18+
19+
SHLIB_LINK = $(libpq) $(BE_DLLLIBS)
20+
21+
NAME := walreceiver
2022

2123
all: submake-libpq all-shared-lib
2224

0 commit comments

Comments
 (0)