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
b99a3a75
Commit
b99a3a75
authored
21 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Rename to USE_PGTZ to match code.
parent
a640845c
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
+2
-2
2 additions, 2 deletions
configure
configure.in
+3
-3
3 additions, 3 deletions
configure.in
src/Makefile.global.in
+3
-3
3 additions, 3 deletions
src/Makefile.global.in
src/include/pg_config.h.in
+3
-3
3 additions, 3 deletions
src/include/pg_config.h.in
with
11 additions
and
11 deletions
configure
+
2
−
2
View file @
b99a3a75
...
@@ -12015,7 +12015,7 @@ LIBOBJS="$LIBOBJS pipe.$ac_objext"
...
@@ -12015,7 +12015,7 @@ LIBOBJS="$LIBOBJS pipe.$ac_objext"
LIBOBJS="$LIBOBJS rand.$ac_objext"
LIBOBJS="$LIBOBJS rand.$ac_objext"
cat >>confdefs.h <<\_ACEOF
cat >>confdefs.h <<\_ACEOF
#define PGTZ 1
#define
USE_
PGTZ 1
_ACEOF
_ACEOF
PGTZ=yes
PGTZ=yes
...
@@ -18613,7 +18613,7 @@ s,@python_includespec@,$python_includespec,;t t
...
@@ -18613,7 +18613,7 @@ s,@python_includespec@,$python_includespec,;t t
s,@python_libspec@,$python_libspec,;t t
s,@python_libspec@,$python_libspec,;t t
s,@LIBOBJS@,$LIBOBJS,;t t
s,@LIBOBJS@,$LIBOBJS,;t t
s,@HAVE_IPV6@,$HAVE_IPV6,;t t
s,@HAVE_IPV6@,$HAVE_IPV6,;t t
s,@PGTZ@,$PGTZ,;t t
s,@
USE_
PGTZ@,$
USE_
PGTZ,;t t
s,@acx_pthread_config@,$acx_pthread_config,;t t
s,@acx_pthread_config@,$acx_pthread_config,;t t
s,@PTHREAD_CC@,$PTHREAD_CC,;t t
s,@PTHREAD_CC@,$PTHREAD_CC,;t t
s,@PTHREAD_LIBS@,$PTHREAD_LIBS,;t t
s,@PTHREAD_LIBS@,$PTHREAD_LIBS,;t t
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
3
−
3
View file @
b99a3a75
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
1
2004/04/30
04:31:51
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.34
2
2004/04/30
15:01:25
momjian Exp $
dnl
dnl
dnl Developers, please strive to achieve this order:
dnl Developers, please strive to achieve this order:
dnl
dnl
...
@@ -894,10 +894,10 @@ AC_LIBOBJ(gettimeofday)
...
@@ -894,10 +894,10 @@ AC_LIBOBJ(gettimeofday)
AC_LIBOBJ(open)
AC_LIBOBJ(open)
AC_LIBOBJ(pipe)
AC_LIBOBJ(pipe)
AC_LIBOBJ(rand)
AC_LIBOBJ(rand)
AC_DEFINE(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
PGTZ=yes
AC_SUBST(PGTZ) ;;
AC_SUBST(
USE_
PGTZ) ;;
esac
esac
# Win32 can't to rename or unlink on an open file
# Win32 can't to rename or unlink on an open file
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.global.in
+
3
−
3
View file @
b99a3a75
# -*-makefile-*-
# -*-makefile-*-
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.1
79
2004/04/30
04:31:52
momjian Exp $
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.1
80
2004/04/30
15:01:25
momjian Exp $
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
# All PostgreSQL makefiles include this file and use the variables it sets,
...
@@ -147,11 +147,11 @@ TK_LIBS = @TK_LIBS@
...
@@ -147,11 +147,11 @@ TK_LIBS = @TK_LIBS@
TK_LIB_SPEC
=
@TK_LIB_SPEC@
TK_LIB_SPEC
=
@TK_LIB_SPEC@
TK_XINCLUDES
=
@TK_XINCLUDES@
TK_XINCLUDES
=
@TK_XINCLUDES@
USE_PGTZ
=
@USE_PGTZ@
PTHREAD_CFLAGS
=
@PTHREAD_CFLAGS@
PTHREAD_CFLAGS
=
@PTHREAD_CFLAGS@
PTHREAD_LIBS
=
@PTHREAD_LIBS@
PTHREAD_LIBS
=
@PTHREAD_LIBS@
PGTZ
=
@PGTZ@
have_docbook
=
@have_docbook@
have_docbook
=
@have_docbook@
DOCBOOKSTYLE
=
@DOCBOOKSTYLE@
DOCBOOKSTYLE
=
@DOCBOOKSTYLE@
COLLATEINDEX
=
@COLLATEINDEX@
COLLATEINDEX
=
@COLLATEINDEX@
...
...
This diff is collapsed.
Click to expand it.
src/include/pg_config.h.in
+
3
−
3
View file @
b99a3a75
...
@@ -575,9 +575,6 @@
...
@@ -575,9 +575,6 @@
/* Define to the version of this package. */
/* Define to the version of this package. */
#undef PACKAGE_VERSION
#undef PACKAGE_VERSION
/* Define to 1 to use our own timezone library */
#undef PGTZ
/* Define to the name of the PostgreSQL service principal in Kerberos.
/* Define to the name of the PostgreSQL service principal in Kerberos.
(--with-krb-srvnam=NAME) */
(--with-krb-srvnam=NAME) */
#undef PG_KRB_SRVNAM
#undef PG_KRB_SRVNAM
...
@@ -618,6 +615,9 @@
...
@@ -618,6 +615,9 @@
/* Define to 1 to build with PAM support. (--with-pam) */
/* Define to 1 to build with PAM support. (--with-pam) */
#undef USE_PAM
#undef USE_PAM
/* Define to 1 to use our own timezone library */
#undef USE_PGTZ
/* Define to 1 to build with Rendezvous support. (--with-rendezvous) */
/* Define to 1 to build with Rendezvous support. (--with-rendezvous) */
#undef USE_RENDEZVOUS
#undef USE_RENDEZVOUS
...
...
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