[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: DAV-only client cosmetic buglet (was: Re: upgrading SVN ...)

From: Alexis Huxley <ahuxley_at_gmx.net>
Date: 2002-12-09 11:45:12 CET

> > 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;

Yup, I can confirm that works. Thanks.

Alexis

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Dec 9 11:45:59 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.