Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
82700281
Commit
82700281
authored
Apr 30, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cleanups for USE_PGTZ.
parent
b99a3a75
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
configure
configure
+1
-1
configure.in
configure.in
+2
-2
src/backend/Makefile
src/backend/Makefile
+5
-1
src/timezone/Makefile
src/timezone/Makefile
+2
-2
No files found.
configure
View file @
82700281
...
...
@@ -12018,7 +12018,7 @@ cat >>confdefs.h <<\_ACEOF
#define USE_PGTZ 1
_ACEOF
PGTZ
=
yes
USE_
PGTZ
=
yes
;;
esac
...
...
configure.in
View file @
82700281
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.34
2 2004/04/30 15:01:25
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.34
3 2004/04/30 16:08:01
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -896,7 +896,7 @@ AC_LIBOBJ(pipe)
AC_LIBOBJ(rand)
AC_DEFINE(USE_PGTZ, 1,
[Define to 1 to use our own timezone library])
PGTZ=yes
USE_
PGTZ=yes
AC_SUBST(USE_PGTZ) ;;
esac
...
...
src/backend/Makefile
View file @
82700281
...
...
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.9
8 2004/02/02 00:11:30
momjian Exp $
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.9
9 2004/04/30 16:08:01
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -16,6 +16,10 @@ DIRS := access bootstrap catalog parser commands executor lib libpq \
main nodes optimizer port postmaster regex rewrite
\
storage tcop utils
ifeq
($(USE_PGTZ), yes)
DIRS
+=
$(top_builddir)
/src/timezone
endif
OBJS
:=
$
(
DIRS:%
=
%/SUBSYS.o
)
ifeq
($(PORTNAME), qnx4)
...
...
src/timezone/Makefile
View file @
82700281
...
...
@@ -4,7 +4,7 @@
# Makefile for the timezone library
# IDENTIFICATION
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.
3 2004/04/30 14:24:14
momjian Exp $
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.
4 2004/04/30 16: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)
ifeq
($(
USE_
PGTZ), yes)
all
:
SUBSYS.o zic
SUBSYS.o
:
$(OBJS)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment