Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
82700281
Commit
82700281
authored
21 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
More cleanups for USE_PGTZ.
parent
b99a3a75
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
configure
+1
-1
1 addition, 1 deletion
configure
configure.in
+2
-2
2 additions, 2 deletions
configure.in
src/backend/Makefile
+5
-1
5 additions, 1 deletion
src/backend/Makefile
src/timezone/Makefile
+2
-2
2 additions, 2 deletions
src/timezone/Makefile
with
10 additions
and
6 deletions
configure
+
1
−
1
View file @
82700281
...
@@ -12018,7 +12018,7 @@ cat >>confdefs.h <<\_ACEOF
...
@@ -12018,7 +12018,7 @@ cat >>confdefs.h <<\_ACEOF
#define USE_PGTZ 1
#define USE_PGTZ 1
_ACEOF
_ACEOF
PGTZ=yes
USE_
PGTZ=yes
;;
;;
esac
esac
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
2
−
2
View file @
82700281
dnl Process this file with autoconf to produce a configure script.
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.34
2
2004/04/30 1
5
:0
1:25
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.34
3
2004/04/30 1
6
:0
8:01
momjian Exp $
dnl
dnl
dnl Developers, please strive to achieve this order:
dnl Developers, please strive to achieve this order:
dnl
dnl
...
@@ -896,7 +896,7 @@ AC_LIBOBJ(pipe)
...
@@ -896,7 +896,7 @@ AC_LIBOBJ(pipe)
AC_LIBOBJ(rand)
AC_LIBOBJ(rand)
AC_DEFINE(USE_PGTZ, 1,
AC_DEFINE(USE_PGTZ, 1,
[Define to 1 to use our own timezone library])
[Define to 1 to use our own timezone library])
PGTZ=yes
USE_
PGTZ=yes
AC_SUBST(USE_PGTZ) ;;
AC_SUBST(USE_PGTZ) ;;
esac
esac
...
...
This diff is collapsed.
Click to expand it.
src/backend/Makefile
+
5
−
1
View file @
82700281
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
#
#
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.9
8
2004/0
2/02 00:11:30
momjian Exp $
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.9
9
2004/0
4/30 16:08:01
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,6 +16,10 @@ DIRS := access bootstrap catalog parser commands executor lib libpq \
...
@@ -16,6 +16,10 @@ DIRS := access bootstrap catalog parser commands executor lib libpq \
main nodes optimizer port postmaster regex rewrite
\
main nodes optimizer port postmaster regex rewrite
\
storage tcop utils
storage tcop utils
ifeq
($(USE_PGTZ), yes)
DIRS
+=
$(
top_builddir
)
/src/timezone
endif
OBJS
:=
$(
DIRS:%
=
%/SUBSYS.o
)
OBJS
:=
$(
DIRS:%
=
%/SUBSYS.o
)
ifeq
($(PORTNAME), qnx4)
ifeq
($(PORTNAME), qnx4)
...
...
This diff is collapsed.
Click to expand it.
src/timezone/Makefile
+
2
−
2
View file @
82700281
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for the timezone library
# Makefile for the timezone library
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.
3
2004/04/30 1
4:24:14
momjian Exp $
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.
4
2004/04/30 1
6:08:01
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -20,7 +20,7 @@ ZICOBJS= zic.o ialloc.o scheck.o localtime.o asctime.o pgtz.o
...
@@ -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
TZDATA
:=
africa antarctica asia australasia europe northamerica southamerica pacificnew etcetera factory backward systemv solar87 solar88 solar89
TZDATAFILES
:=
$(
TZDATA:%
=
data/%
)
TZDATAFILES
:=
$(
TZDATA:%
=
data/%
)
ifeq
($(PGTZ), yes)
ifeq
($(
USE_
PGTZ), yes)
all
:
SUBSYS.o zic
all
:
SUBSYS.o zic
SUBSYS.o
:
$(OBJS)
SUBSYS.o
:
$(OBJS)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment