2005-10-04 19:37:36 +00:00
|
|
|
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).
|
|
|
|
Per bug #162198.
|
|
|
|
|
|
|
|
|
2005-11-07 21:54:56 +00:00
|
|
|
diff -Naur postgresql-8.1.0.orig/src/pl/plperl/GNUmakefile postgresql-8.1.0/src/pl/plperl/GNUmakefile
|
|
|
|
--- postgresql-8.1.0.orig/src/pl/plperl/GNUmakefile 2005-07-13 13:12:56.000000000 -0400
|
|
|
|
+++ postgresql-8.1.0/src/pl/plperl/GNUmakefile 2005-11-07 15:10:33.000000000 -0500
|
2005-10-04 22:04:22 +00:00
|
|
|
@@ -36,6 +36,9 @@
|
2005-10-04 19:37:36 +00:00
|
|
|
|
2005-10-04 22:04:22 +00:00
|
|
|
SHLIB_LINK = $(perl_embed_ldflags) $(BE_DLLLIBS)
|
2005-10-04 19:37:36 +00:00
|
|
|
|
|
|
|
+# Force rpath to be used even though we disable it everywhere else
|
2005-10-04 22:04:22 +00:00
|
|
|
+SHLIB_LINK += $(rpath)
|
2005-10-04 19:37:36 +00:00
|
|
|
+
|
2005-11-07 21:54:56 +00:00
|
|
|
REGRESS_OPTS = --dbname=$(PL_TESTDB) --load-language=plperl
|
|
|
|
REGRESS = plperl plperl_trigger plperl_shared plperl_elog
|
2005-10-04 19:37:36 +00:00
|
|
|
|