From 7df86055a1ae6603346a54ef4dda2d370b7ca1a9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 2 Apr 2001 03:21:23 +0000 Subject: [PATCH] Remove duplicate definition of DLLLIBS, per gripe from Fred Yankowski. --- src/backend/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/Makefile b/src/backend/Makefile index b7325fd4c8..f86e4c53cd 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -63,14 +63,15 @@ $(DIRS:%=%-recursive): $(top_builddir)/src/include/parser/parse.h $(top_builddir ifeq ($(MAKE_DLL), true) + DLLOBJS := $(OBJS) -DLLLIBS := -L/usr/local/lib -lcygipc -lcrypt -lcygwin -lkernel32 postgres.def: $(DLLOBJS) $(DLLTOOL) --export-all --output-def $@ $(DLLOBJS) libpostgres.a: $(DLLOBJS) $(top_builddir)/src/utils/dllinit.o postgres.def $(DLLTOOL) --dllname postgres.exe --def postgres.def --output-lib $@ + endif # MAKE_DLL -- 2.39.5