aboutsummaryrefslogtreecommitdiffstats
path: root/main/postgresql/perl-rpath.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-01-28 01:57:29 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-02-07 11:53:35 +0100
commitd5cc4bcc08adee1937aa44bd4eefb56f9034b12b (patch)
tree6cefe956ec390234fe55cbba6fde14a5f4cfde40 /main/postgresql/perl-rpath.patch
parent04de19a1bdf4fd5cdaff7ded16e95db39fc087e9 (diff)
downloadaports-d5cc4bcc08adee1937aa44bd4eefb56f9034b12b.tar.bz2
aports-d5cc4bcc08adee1937aa44bd4eefb56f9034b12b.tar.xz
main/postgresql: correctly fix problem with libperl.so
Diffstat (limited to 'main/postgresql/perl-rpath.patch')
-rw-r--r--main/postgresql/perl-rpath.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/main/postgresql/perl-rpath.patch b/main/postgresql/perl-rpath.patch
new file mode 100644
index 0000000000..a2505acf75
--- /dev/null
+++ b/main/postgresql/perl-rpath.patch
@@ -0,0 +1,22 @@
+We configure Postgres with --disable-rpath because for the most part we
+want to leave it to ldconfig to determine where libraries are. However,
+for some reason the Perl package puts libperl.so in a nonstandard place
+and doesn't add that place to the ldconfig search path. I think this
+is a Perl packaging bug, myself, but apparently it's not going to change.
+So work around it by adding an rpath spec to plperl.so (only).
+
+Alpine notes:
+This patch is copied from Fedora.
+
+--- a/src/pl/plperl/GNUmakefile
++++ b/src/pl/plperl/GNUmakefile
+@@ -43,6 +43,9 @@
+
+ SHLIB_LINK = $(perl_embed_ldflags)
+
++# Force rpath to be used even though we disable it everywhere else
++SHLIB_LINK += $(rpath)
++
+ REGRESS_OPTS = --dbname=$(PL_TESTDB) --load-extension=plperl --load-extension=plperlu
+ REGRESS = plperl plperl_lc plperl_trigger plperl_shared plperl_elog plperl_util plperl_init plperlu plperl_array
+ # if Perl can support two interpreters in one backend,