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
2e1f2c31
Commit
2e1f2c31
authored
Dec 30, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make use of TCL_INCLUDE_SPEC if available (it's new in Tcl 8.4, too bad
it took 'em this long to realize it's needed...)
parent
33f0108d
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
7 deletions
+25
-7
configure
configure
+7
-0
configure.in
configure.in
+8
-1
src/Makefile.global.in
src/Makefile.global.in
+2
-1
src/bin/pgtclsh/Makefile
src/bin/pgtclsh/Makefile
+2
-2
src/interfaces/libpgtcl/Makefile
src/interfaces/libpgtcl/Makefile
+2
-2
src/pl/tcl/Makefile
src/pl/tcl/Makefile
+4
-1
No files found.
configure
View file @
2e1f2c31
...
@@ -15417,6 +15417,12 @@ eval TCL_LIBS=\"$TCL_LIBS\"
...
@@ -15417,6 +15417,12 @@ eval TCL_LIBS=\"$TCL_LIBS\"
eval
TCL_LIB_SPEC
=
\"
$TCL_LIB_SPEC
\"
eval
TCL_LIB_SPEC
=
\"
$TCL_LIB_SPEC
\"
eval
TCL_SHARED_BUILD
=
\"
$TCL_SHARED_BUILD
\"
eval
TCL_SHARED_BUILD
=
\"
$TCL_SHARED_BUILD
\"
# TCL_INCLUDE_SPEC is only provided in Tcl 8.4 and later
if
test
"
${
TCL_INCLUDE_SPEC
+set
}
"
=
set
;
then
eval
TCL_INCLUDE_SPEC
=
\"
$TCL_INCLUDE_SPEC
\"
else
TCL_INCLUDE_SPEC
=
''
fi
fi
fi
# Check for Tk configuration script tkConfig.sh
# Check for Tk configuration script tkConfig.sh
...
@@ -16435,6 +16441,7 @@ s,@TCL_LIBS@,$TCL_LIBS,;t t
...
@@ -16435,6 +16441,7 @@ s,@TCL_LIBS@,$TCL_LIBS,;t t
s,@TCL_LIB_SPEC@,
$TCL_LIB_SPEC
,;t t
s,@TCL_LIB_SPEC@,
$TCL_LIB_SPEC
,;t t
s,@TCL_SHARED_BUILD@,
$TCL_SHARED_BUILD
,;t t
s,@TCL_SHARED_BUILD@,
$TCL_SHARED_BUILD
,;t t
s,@TCL_SHLIB_LD_LIBS@,
$TCL_SHLIB_LD_LIBS
,;t t
s,@TCL_SHLIB_LD_LIBS@,
$TCL_SHLIB_LD_LIBS
,;t t
s,@TCL_INCLUDE_SPEC@,
$TCL_INCLUDE_SPEC
,;t t
s,@TK_CONFIG_SH@,
$TK_CONFIG_SH
,;t t
s,@TK_CONFIG_SH@,
$TK_CONFIG_SH
,;t t
s,@TK_LIBS@,
$TK_LIBS
,;t t
s,@TK_LIBS@,
$TK_LIBS
,;t t
s,@TK_LIB_SPEC@,
$TK_LIB_SPEC
,;t t
s,@TK_LIB_SPEC@,
$TK_LIB_SPEC
,;t t
...
...
configure.in
View file @
2e1f2c31
dnl Process this file with autoconf to produce a configure script.
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.22
3 2002/12/29 03:56:35 momjian
Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.22
4 2002/12/30 17:19:49 tgl
Exp $
dnl
dnl
dnl Developers, please strive to achieve this order:
dnl Developers, please strive to achieve this order:
dnl
dnl
...
@@ -1135,6 +1135,13 @@ if test "$with_tcl" = yes; then
...
@@ -1135,6 +1135,13 @@ if test "$with_tcl" = yes; then
PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
[TCL_LIB_FILE,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
[TCL_LIB_FILE,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
# TCL_INCLUDE_SPEC is only provided in Tcl 8.4 and later
if test "${TCL_INCLUDE_SPEC+set}" = set; then
eval TCL_INCLUDE_SPEC=\"$TCL_INCLUDE_SPEC\"
else
TCL_INCLUDE_SPEC=''
fi
AC_SUBST(TCL_INCLUDE_SPEC)dnl
fi
fi
# Check for Tk configuration script tkConfig.sh
# Check for Tk configuration script tkConfig.sh
...
...
src/Makefile.global.in
View file @
2e1f2c31
# -*-makefile-*-
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.15
6 2002/11/10 00:37:28 momjian
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.15
7 2002/12/30 17:19:50 tgl
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,
...
@@ -144,6 +144,7 @@ TCLSH = @TCLSH@
...
@@ -144,6 +144,7 @@ TCLSH = @TCLSH@
TCL_LIB_FILE
=
@TCL_LIB_FILE@
TCL_LIB_FILE
=
@TCL_LIB_FILE@
TCL_LIBS
=
@TCL_LIBS@
TCL_LIBS
=
@TCL_LIBS@
TCL_LIB_SPEC
=
@TCL_LIB_SPEC@
TCL_LIB_SPEC
=
@TCL_LIB_SPEC@
TCL_INCLUDE_SPEC
=
@TCL_INCLUDE_SPEC@
TCL_SHARED_BUILD
=
@TCL_SHARED_BUILD@
TCL_SHARED_BUILD
=
@TCL_SHARED_BUILD@
TCL_SHLIB_LD_LIBS
=
@TCL_SHLIB_LD_LIBS@
TCL_SHLIB_LD_LIBS
=
@TCL_SHLIB_LD_LIBS@
...
...
src/bin/pgtclsh/Makefile
View file @
2e1f2c31
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.
39 2002/06/20 20:29:42 momjian
Exp $
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.
40 2002/12/30 17:19:51 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -19,7 +19,7 @@ libpgtcl_srcdir = $(top_srcdir)/src/interfaces/libpgtcl
...
@@ -19,7 +19,7 @@ libpgtcl_srcdir = $(top_srcdir)/src/interfaces/libpgtcl
libpgtcl_builddir
=
$(top_builddir)
/src/interfaces/libpgtcl
libpgtcl_builddir
=
$(top_builddir)
/src/interfaces/libpgtcl
libpgtcl
=
-L
$(libpgtcl_builddir)
-lpgtcl
libpgtcl
=
-L
$(libpgtcl_builddir)
-lpgtcl
override CPPFLAGS
:
= -I$(libpgtcl_srcdir) $(CPPFLAGS) $(TK_XINCLUDES)
override CPPFLAGS
:
= -I$(libpgtcl_srcdir) $(CPPFLAGS) $(TK_XINCLUDES)
$(TCL_INCLUDE_SPEC)
# If we are here then Tcl is available
# If we are here then Tcl is available
...
...
src/interfaces/libpgtcl/Makefile
View file @
2e1f2c31
...
@@ -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
#
#
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.
29 2002/12/11 04:07:39 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.
30 2002/12/30 17:19:52 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,7 +16,7 @@ NAME= pgtcl
...
@@ -16,7 +16,7 @@ NAME= pgtcl
SO_MAJOR_VERSION
=
2
SO_MAJOR_VERSION
=
2
SO_MINOR_VERSION
=
4
SO_MINOR_VERSION
=
4
override CPPFLAGS
:
= -I$(libpq_srcdir) $(CPPFLAGS)
override CPPFLAGS
:
= -I$(libpq_srcdir) $(CPPFLAGS)
$(TCL_INCLUDE_SPEC)
OBJS
=
pgtcl.o pgtclCmds.o pgtclId.o
OBJS
=
pgtcl.o pgtclCmds.o pgtclId.o
...
...
src/pl/tcl/Makefile
View file @
2e1f2c31
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#
#
# Makefile for the pltcl shared object
# Makefile for the pltcl shared object
#
#
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.3
8 2002/05/24 18:10:17 petere
Exp $
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.3
9 2002/12/30 17:19:54 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -11,6 +11,9 @@ top_builddir = ../../..
...
@@ -11,6 +11,9 @@ top_builddir = ../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= $(CPPFLAGS) $(TCL_INCLUDE_SPEC)
# Find out whether Tcl was built as a shared library --- if not, we
# Find out whether Tcl was built as a shared library --- if not, we
# can't link a shared library that depends on it, and have to forget
# can't link a shared library that depends on it, and have to forget
# about building pltcl. In Tcl 8, tclConfig.sh sets TCL_SHARED_BUILD
# about building pltcl. In Tcl 8, tclConfig.sh sets TCL_SHARED_BUILD
...
...
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