summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.win32
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-06-22 23:50:35 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-06-22 23:50:35 +0000
commit69bf0a0ddd52bcc35e75c63547603f96bcdff74b (patch)
treeff27a5facf5158e5fc5be267ede352211efebb7c /src/makefiles/Makefile.win32
parent3a04f53e7f850a18388256abb0ba03416e6e67c4 (diff)
downloadpostgresql-69bf0a0ddd52bcc35e75c63547603f96bcdff74b.tar.gz
Remove dllinit.c; it was only needed for long-obsolete Cygwin versions,
and there was some question about its copyright status.
Diffstat (limited to 'src/makefiles/Makefile.win32')
-rw-r--r--src/makefiles/Makefile.win325
1 files changed, 2 insertions, 3 deletions
diff --git a/src/makefiles/Makefile.win32 b/src/makefiles/Makefile.win32
index 36b4e802bb..a3ce9f29ea 100644
--- a/src/makefiles/Makefile.win32
+++ b/src/makefiles/Makefile.win32
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.9 2006/01/19 20:45:29 momjian Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.10 2006/06/22 23:50:35 tgl Exp $
# Use replacement include files for those missing on Win32
override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32"
@@ -10,7 +10,6 @@ BE_DLLLIBS= -L$(libdir) -lpostgres
else
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
endif
-DLLINIT = $(top_builddir)/src/utils/dllinit.o
AROPT = crs
DLSUFFIX = .dll
@@ -18,7 +17,7 @@ CFLAGS_SL =
%.dll: %.o
$(DLLTOOL) --export-all --output-def $*.def $<
- $(DLLWRAP) -o $@ --def $*.def $< $(DLLINIT) $(SHLIB_LINK)
+ $(DLLWRAP) -o $@ --def $*.def $< $(SHLIB_LINK)
rm -f $*.def
ifneq (,$(findstring backend,$(subdir)))