1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Modify the platform-specific makefiles so that macro 'rpath' is defined

in terms of macro 'rpathdir', as I proposed a few weeks ago.  In itself
this commit shouldn't change the behavior at all, but it opens the door
to using special rpaths for the PL shared libraries, as seems to be
needed for plperl in particular.
This commit is contained in:
Tom Lane
2004-11-19 00:41:39 +00:00
parent b6038484f8
commit a9ddd649df
11 changed files with 22 additions and 20 deletions

View File

@@ -7,9 +7,9 @@ endif
ifeq ($(ld_R_works), yes)
ifeq ($(with_gnu_ld), yes)
rpath = -Wl,-rpath,$(libdir)
rpath = -Wl,-rpath,$(rpathdir)
else
rpath = -Wl,-R$(libdir)
rpath = -Wl,-R$(rpathdir)
endif
endif
shlib_symbolic = -Wl,-Bsymbolic