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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
36f41c71
Commit
36f41c71
authored
May 9, 2001
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Make tcl unknown configure from Makefile, not configure.
parent
14536f59
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
configure.in
+0
-3
0 additions, 3 deletions
configure.in
src/Makefile.global.in
+2
-1
2 additions, 1 deletion
src/Makefile.global.in
src/pl/tcl/Makefile
+13
-2
13 additions, 2 deletions
src/pl/tcl/Makefile
with
15 additions
and
6 deletions
configure.in
+
0
−
3
View file @
36f41c71
...
@@ -1175,9 +1175,6 @@ AC_OUTPUT(
...
@@ -1175,9 +1175,6 @@ AC_OUTPUT(
src/GNUmakefile
src/GNUmakefile
src/Makefile.global
src/Makefile.global
src/backend/port/Makefile
src/backend/port/Makefile
src/pl/tcl/modules/pltcl_listmod
src/pl/tcl/modules/pltcl_loadmod
src/pl/tcl/modules/pltcl_delmod
],
],
[
[
# Update timestamp for config.h (see Makefile.global)
# Update timestamp for config.h (see Makefile.global)
...
...
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.global.in
+
2
−
1
View file @
36f41c71
# -*-makefile-*-
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.12
5
2001/05/09
19:57:33
momjian Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.12
6
2001/05/09
20:19:30
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,
...
@@ -125,6 +125,7 @@ krb_srvtab = @krb_srvtab@
...
@@ -125,6 +125,7 @@ krb_srvtab = @krb_srvtab@
TCL_CONFIG_SH
=
@TCL_CONFIG_SH@
TCL_CONFIG_SH
=
@TCL_CONFIG_SH@
TK_CONFIG_SH
=
@TK_CONFIG_SH@
TK_CONFIG_SH
=
@TK_CONFIG_SH@
TCLSH
=
@TCLSH@
have_docbook
=
@have_docbook@
have_docbook
=
@have_docbook@
DOCBOOKSTYLE
=
@DOCBOOKSTYLE@
DOCBOOKSTYLE
=
@DOCBOOKSTYLE@
...
...
...
...
This diff is collapsed.
Click to expand it.
src/pl/tcl/Makefile
+
13
−
2
View file @
36f41c71
...
@@ -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.2
8
2001/05/09 20:
08:08
momjian Exp $
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.2
9
2001/05/09 20:
19:30
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -93,7 +93,18 @@ endif
...
@@ -93,7 +93,18 @@ endif
ifeq
($(TCL_SHARED_BUILD), 1)
ifeq
($(TCL_SHARED_BUILD), 1)
all
:
$(INFILES)
all
:
$(INFILES) tcl_unknown
tcl_unknown
:
$(top_builddir)/src/Makefile.global
\
modules/pltcl_loadmod.in
\
modules/pltcl_delmod.in
\
modules/pltcl_listmod.in
ifeq
($(enable_pltcl_unknown), yes)
sed
-e
's/@TCLSH@/
$(
TCLSH
)
/g'
modules/pltcl_loadmod.in
>
modules/pltcl_loadmod
sed
-e
's/@TCLSH@/
$(
TCLSH
)
/g'
modules/pltcl_delmod.in
>
modules/pltcl_delmod
sed
-e
's/@TCLSH@/
$(
TCLSH
)
/g'
modules/pltcl_listmod.in
>
modules/pltcl_listmod
chmod
a+x modules/pltcl_loadmod modules/pltcl_delmod modules/pltcl_listmod
endif
pltcl$(DLSUFFIX)
:
pltcl.o
pltcl$(DLSUFFIX)
:
pltcl.o
...
...
...
...
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