Index: backend/Makefile =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/backend/Makefile,v retrieving revision 1.98 diff -c -r1.98 Makefile *** backend/Makefile 2 Feb 2004 00:11:30 -0000 1.98 --- backend/Makefile 30 Apr 2004 06:44:04 -0000 *************** *** 16,21 **** --- 16,25 ---- main nodes optimizer port postmaster regex rewrite \ storage tcop utils + ifeq ($(PORTNAME), win32) + DIRS+= $(top_builddir)/src/timezone + endif + OBJS := $(DIRS:%=%/SUBSYS.o) ifeq ($(PORTNAME), qnx4) Index: bin/pg_controldata/Makefile =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/bin/pg_controldata/Makefile,v retrieving revision 1.6 diff -c -r1.6 Makefile *** bin/pg_controldata/Makefile 26 Apr 2004 17:40:48 -0000 1.6 --- bin/pg_controldata/Makefile 30 Apr 2004 06:44:07 -0000 *************** *** 14,19 **** --- 14,23 ---- OBJS= pg_controldata.o pg_crc.o + ifeq ($(PORTNAME), win32) + OBJS+= $(top_builddir)/src/timezone/SUBSYS.o + endif + all: submake-libpgport pg_controldata pg_controldata: $(OBJS) Index: bin/pg_dump/Makefile =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/bin/pg_dump/Makefile,v retrieving revision 1.45 diff -c -r1.45 Makefile *** bin/pg_dump/Makefile 26 Apr 2004 17:40:48 -0000 1.45 --- bin/pg_dump/Makefile 30 Apr 2004 06:44:07 -0000 *************** *** 17,22 **** --- 17,26 ---- pg_backup_files.o pg_backup_null.o pg_backup_tar.o \ dumputils.o + ifeq ($(PORTNAME), win32) + OBJS+= $(top_builddir)/src/timezone/SUBSYS.o + endif + EXTRA_OBJS = $(top_builddir)/src/backend/parser/keywords.o override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) -DBINDIR=\"$(bindir)\" Index: timezone/Makefile =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/timezone/Makefile,v retrieving revision 1.2 diff -c -r1.2 Makefile *** timezone/Makefile 30 Apr 2004 04:31:52 -0000 1.2 --- timezone/Makefile 30 Apr 2004 06:44:09 -0000 *************** *** 13,19 **** include $(top_builddir)/src/Makefile.global OBJS= asctime.o difftime.o localtime.o pgtz.o ! ZICOBJS= zic.o ialloc.o scheck.o localtime.o asctime.o pgtz.o TZDATA := africa antarctica asia australasia europe northamerica southamerica pacificnew etcetera factory backward systemv solar87 solar88 solar89 TZDATAFILES := $(TZDATA:%=data/%) --- 13,19 ---- include $(top_builddir)/src/Makefile.global OBJS= asctime.o difftime.o localtime.o pgtz.o ! ZICOBJS= zic.o ialloc.o scheck.o localtime.o asctime.o pgtz.o ../port/path.o TZDATA := africa antarctica asia australasia europe northamerica southamerica pacificnew etcetera factory backward systemv solar87 solar88 solar89 TZDATAFILES := $(TZDATA:%=data/%) Index: timezone/private.h =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/timezone/private.h,v retrieving revision 1.2 diff -c -r1.2 private.h *** timezone/private.h 30 Apr 2004 04:44:06 -0000 1.2 --- timezone/private.h 30 Apr 2004 06:44:09 -0000 *************** *** 51,57 **** #endif /* !defined HAVE_STRERROR */ #ifndef HAVE_SYMLINK ! #define HAVE_SYMLINK 1 #endif /* !defined HAVE_SYMLINK */ #ifndef HAVE_SYS_STAT_H --- 51,57 ---- #endif /* !defined HAVE_STRERROR */ #ifndef HAVE_SYMLINK ! /* #define HAVE_SYMLINK 1 */ #endif /* !defined HAVE_SYMLINK */ #ifndef HAVE_SYS_STAT_H