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
e3909672
Commit
e3909672
authored
Dec 13, 1998
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build pltcl.so correctly on platforms that want dependent
shared libraries to be listed in the link command.
parent
3a52e3f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
+17
-6
src/pl/tcl/Makefile
src/pl/tcl/Makefile
+17
-6
No files found.
src/pl/tcl/Makefile
View file @
e3909672
...
...
@@ -4,7 +4,7 @@
# Makefile for the pltcl shared object
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.
9 1998/10/18 19:41:00
tgl Exp $
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.
10 1998/12/13 23:46:49
tgl Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -38,14 +38,25 @@ endif
endif
# Change following to how shared library that contain
#
correct
references to libtcl must get built on your system.
# Change following to how shared library that contain
s
# references to libtcl must get built on your system.
# Since these definitions come from the tclConfig.sh script,
# they should work if the shared build of tcl was successful
# on this system.
#
# on this system. However, tclConfig.sh lies to us a little bit
# (at least in versions 7.6 through 8.0.4) --- it doesn't mention -lc
# in TCL_LIBS, but you still need it on systems that want to hear about
# dependent libraries...
ifneq
($(TCL_SHLIB_LD_LIBS),)
# link command for a shared lib must mention shared libs it uses
SHLIB_EXTRA_LIBS
=
$(TCL_LIBS)
-lc
else
# link command for a shared lib must NOT mention shared libs it uses
SHLIB_EXTRA_LIBS
=
endif
%$(TCL_SHLIB_SUFFIX)
:
%.o
$(TCL_SHLIB_LD)
-o
$@
$<
$(TCL_
SHLIB_LD_LIBS)
$(TCL_LIB_SPEC)
$(TCL
_LIBS)
$(TCL_SHLIB_LD)
-o
$@
$<
$(TCL_
LIB_SPEC)
$(SHLIB_EXTRA
_LIBS)
#
...
...
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