We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentb99a3a7 commit8270028Copy full SHA for 8270028
configure
@@ -12018,7 +12018,7 @@ cat >>confdefs.h <<\_ACEOF
12018
#define USE_PGTZ 1
12019
_ACEOF
12020
12021
-PGTZ=yes
+USE_PGTZ=yes
12022
;;
12023
esac
12024
configure.in
@@ -1,5 +1,5 @@
1
dnl Process this file with autoconf to produce a configure script.
2
-dnl $PostgreSQL: pgsql/configure.in,v 1.342 2004/04/3015:01:25 momjian Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.343 2004/04/3016:08:01 momjian Exp $
3
dnl
4
dnl Developers, please strive to achieve this order:
5
@@ -896,7 +896,7 @@ AC_LIBOBJ(pipe)
896
AC_LIBOBJ(rand)
897
AC_DEFINE(USE_PGTZ, 1,
898
[Define to 1 to use our own timezone library])
899
900
AC_SUBST(USE_PGTZ) ;;
901
902
src/backend/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
6
7
-# $PostgreSQL: pgsql/src/backend/Makefile,v 1.98 2004/02/02 00:11:30 momjian Exp $
+# $PostgreSQL: pgsql/src/backend/Makefile,v 1.99 2004/04/30 16:08:01 momjian Exp $
8
9
#-------------------------------------------------------------------------
10
@@ -16,6 +16,10 @@ DIRS := access bootstrap catalog parser commands executor lib libpq \
16
main nodes optimizer port postmaster regex rewrite\
17
storage tcop utils
18
19
+ifeq ($(USE_PGTZ), yes)
20
+DIRS+=$(top_builddir)/src/timezone
21
+endif
22
+
23
OBJS :=$(DIRS:%=%/SUBSYS.o)
24
25
ifeq ($(PORTNAME), qnx4)
src/timezone/Makefile
# Makefile for the timezone library
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.3 2004/04/3014:24:14 momjian Exp $
+# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.4 2004/04/3016:08:01 momjian Exp $
@@ -20,7 +20,7 @@ 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/%)
-ifeq ($(PGTZ), yes)
all: SUBSYS.o zic
26
SUBSYS.o:$(OBJS)