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
1bf1597e
Commit
1bf1597e
authored
Jan 05, 2003
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert rpath-mangling patch. See discussion on -patches around Nov 29 for
the rationale.
parent
a60f9db5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
20 deletions
+3
-20
src/Makefile.global.in
src/Makefile.global.in
+1
-4
src/makefiles/Makefile.unixware
src/makefiles/Makefile.unixware
+2
-16
No files found.
src/Makefile.global.in
View file @
1bf1597e
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.15
7 2002/12/30 17:19:50 tgl
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.15
8 2003/01/05 13:45:47 petere
Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
...
...
@@ -190,9 +190,6 @@ LIBS = @LIBS@
LD
=
@LD@
with_gnu_ld
=
@with_gnu_ld@
ld_R_works
=
@ld_R_works@
# Set trpath to a list of library paths included in LDFLAGS
# These paths can be added to rpath in the port specific makefiles if needed.
trpath
=
$(
filter
-L
%,@LDFLAGS@
)
LDFLAGS
=
@LDFLAGS@
LDREL
=
-r
LDOUT
=
-o
...
...
src/makefiles/Makefile.unixware
View file @
1bf1597e
...
...
@@ -7,23 +7,9 @@ endif
ifeq
($(ld_R_works), yes)
ifeq
($(with_gnu_ld), yes)
# Convert the list of library search paths into -rpath options
# (i.e. "-LpathA -LpathB" -> ",-rpath,pathA,-rpath,pathB"), adding
# the contents of LD_LIBRARY_PATH if it exists.
tpath1
=
$(
shell
echo
$(trpath)
|
sed
-e
's/ *-L/,-rpath,/g'
)
ifdef
LD_LIBRARY_PATH
tpath2
=
,-rpath,
$(
shell
echo
$(LD_LIBRARY_PATH)
|
sed
-e
's/:/,-rpath,/g'
)
endif
rpath
=
-Wl
,-rpath,
$(libdir)$(tpath)$(tpath2)
rpath
=
-Wl
,-rpath,
$(libdir)
else
# Convert the list of library search paths into a -R option path
# (i.e. "-LpathA -LpathB" -> ":pathA:pathB"), adding the contents of
# LD_LIBRARY_PATH if it exists.
tpath1
=
$(
shell
echo
$(trpath)
|
sed
-e
's/ *-L/:/g'
)
ifdef
LD_LIBRARY_PATH
tpath2
=
:
$(LD_LIBRARY_PATH)
endif
rpath
=
-Wl
,-R
$(libdir)$(tpath1)$(tpath2)
rpath
=
-Wl
,-R
$(libdir)
endif
endif
shlib_symbolic
=
-Wl
,-Bsymbolic
...
...
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