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:
@@ -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
|
||||
|
Reference in New Issue
Block a user