diff options
| author | Tom Lane | 2004-11-19 00:41:39 +0000 |
|---|---|---|
| committer | Tom Lane | 2004-11-19 00:41:39 +0000 |
| commit | a9ddd649df46afde8f26dd9f85f05292e8da1f4b (patch) | |
| tree | d1dd63d725cd92adc627418d73ea76e31ce93da4 /src/makefiles/Makefile.solaris | |
| parent | b6038484f8c9bb2760c4a5c285b67d4eebeb30b4 (diff) | |
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.
Diffstat (limited to 'src/makefiles/Makefile.solaris')
| -rw-r--r-- | src/makefiles/Makefile.solaris | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/makefiles/Makefile.solaris b/src/makefiles/Makefile.solaris index d6fb7d8a7e7..2ff7e28c907 100644 --- a/src/makefiles/Makefile.solaris +++ b/src/makefiles/Makefile.solaris @@ -1,12 +1,12 @@ -# $PostgreSQL: pgsql/src/makefiles/Makefile.solaris,v 1.10 2003/11/29 19:52:12 pgsql Exp $ +# $PostgreSQL: pgsql/src/makefiles/Makefile.solaris,v 1.11 2004/11/19 00:41:39 tgl Exp $ AROPT = crs ifeq ($(with_gnu_ld), yes) export_dynamic = -Wl,-E -rpath = -Wl,-rpath,$(libdir) +rpath = -Wl,-rpath,$(rpathdir) else -rpath = -R$(libdir) +rpath = -R$(rpathdir) endif shlib_symbolic = -Wl,-Bsymbolic |
