[svn:parrot] r43047 - trunk/runtime/parrot/library
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Mon Dec 14 15:22:20 UTC 2009
Author: NotFound
Date: Mon Dec 14 15:22:18 2009
New Revision: 43047
URL: https://trac.parrot.org/parrot/changeset/43047
Log:
check for libpcre.so.0, TT #578
Modified:
trunk/runtime/parrot/library/pcre.pir
Modified: trunk/runtime/parrot/library/pcre.pir
==============================================================================
--- trunk/runtime/parrot/library/pcre.pir Mon Dec 14 12:44:37 2009 (r43046)
+++ trunk/runtime/parrot/library/pcre.pir Mon Dec 14 15:22:18 2009 (r43047)
@@ -67,11 +67,16 @@
loadlib libpcre, 'libpcre.so'
loaded = defined libpcre
if loaded goto LIB_LOADED
-# soname of recent version
+# soname of recent versions
loadlib libpcre, 'libpcre.so.3'
loaded = defined libpcre
if loaded goto LIB_LOADED
+ # See TT #578
+ loadlib libpcre, 'libpcre.so.0'
+ loaded = defined libpcre
+ if loaded goto LIB_LOADED
+
branch LIB_FAILED
LIB_WIN32:
More information about the parrot-commits
mailing list