On Sat, Dec 07, 2002 at 09:11:42PM +0100, Alexis Huxley wrote:
> te35$ svn --version
> /usr/lib/dld.sl: Can't open shared library: libsvn_ra_local-1.so
> /usr/lib/dld.sl: No such file or directory
...
Yeah, this is an APR bug on HP-UX, I noticed it recently too - I haven't
got round to checking the history of this code, but I think this was the
fix:
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/unix/dso.c,v
retrieving revision 1.56
diff -u -r1.56 dso.c
--- dso.c 13 Sep 2002 04:59:52 -0000 1.56
+++ dso.c 7 Dec 2002 23:55:48 -0000
@@ -119,7 +119,7 @@
const char *path, apr_pool_t *pool)
{
#if defined(DSO_USE_SHL)
- shl_t os_handle = shl_load(path, BIND_IMMEDIATE|BIND_VERBOSE|BIND_NOSTART, 0L);
+ shl_t os_handle = shl_load(path, BIND_IMMEDIATE|BIND_NOSTART, 0L);
#elif defined(DSO_USE_DYLD)
NSObjectFileImage image;
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Dec 8 00:59:48 2002