Remove duplicate definition of DLLLIBS, per gripe from Fred Yankowski.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 2 Apr 2001 03:21:23 +0000 (03:21 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 2 Apr 2001 03:21:23 +0000 (03:21 +0000)
src/backend/Makefile

index b7325fd4c818b6deb92c58de5e3d5273761d94a7..f86e4c53cdc19231099aec56a91b42c533cb481c 100644 (file)
@@ -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