From 7a98d323df2d0839ebb4aab2004c626b64343b76 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 11 Feb 2014 12:59:48 -0500 Subject: [PATCH] Flush a stray definition of $(DLLTOOL). Even if this is needed, it'd be configure's responsibility to set it. --- src/makefiles/Makefile.cygwin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makefiles/Makefile.cygwin b/src/makefiles/Makefile.cygwin index 863732f598..bd83e5f723 100644 --- a/src/makefiles/Makefile.cygwin +++ b/src/makefiles/Makefile.cygwin @@ -1,5 +1,5 @@ -DLLTOOL= dlltool # src/makefiles/Makefile.cygwin + ifdef PGXS BE_DLLLIBS= -L$(libdir) -lpostgres else @@ -43,4 +43,4 @@ endif # Rule for building a shared library from a single .o file %.dll: %.o - $(CC) $(CFLAGS) -shared -o $@ $< $(LDFLAGS) $(LDFLAGS_SL) $(BE_DLLLIBS) + $(CC) $(CFLAGS) -shared -o $@ $< $(LDFLAGS) $(LDFLAGS_SL) $(BE_DLLLIBS) -- 2.40.0