Change 18864 by [EMAIL PROTECTED] on 2003/03/09 13:21:09
Tru64: additional instructions for building a newer Berkeley DB.
Affected files ...
... //depot/perl/README.tru64#16 edit
... //depot/perl/hints/dec_osf.sh#51 edit
Differences ...
==== //depot/perl/README.tru64#16 (text) ====
Index: perl/README.tru64
--- perl/README.tru64#15~18084~ Mon Nov 4 03:04:45 2002
+++ perl/README.tru64 Sun Mar 9 05:21:09 2003
@@ -75,7 +75,8 @@
the DB_File extension test db-hash.t may fail by dumping core after
the subtest 21. There really is no good cure as of Tru64 V5.1A expect
installing a newer Berkeley DB and supplying the right directories for
--Dlocincpth=/some/include and -Dloclibpth=/some/lib when running Configure.
+-Dlocincpth=/some/include and -Dloclibpth=/some/lib when running Configure
+B<and> before running "make test" setting your LD_LIBRARY_PATH to /some/lib.
You can also work around the problem by disabling the DB_File by
specifying -Ui_db to Configure, and then using the BerkeleyFile module
==== //depot/perl/hints/dec_osf.sh#51 (text) ====
Index: perl/hints/dec_osf.sh
--- perl/hints/dec_osf.sh#50~18084~ Mon Nov 4 03:04:45 2002
+++ perl/hints/dec_osf.sh Sun Mar 9 05:21:09 2003
@@ -409,6 +409,10 @@
"$old_LD_LIBRARY_PATH") ;;
*) echo "LD_LIBRARY_PATH is now $LD_LIBRARY_PATH." >& 4 ;;
esac
+case "$LD_LIBRARY_PATH" in
+'') ;;
+* ) export LD_LIBRARY_PATH ;;
+esac
#
# Unset temporary variables no more needed.
End of Patch.