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

Re: rePorting

From: Ben Collins-Sussman <sussman_at_newton.collab.net>
Date: 2000-12-18 22:16:56 CET

Branko =?ISO-8859-2?Q?=C8ibej?= <brane@xbc.nu> writes:

> O.K., it's time for an update now that filesystem tests actually create
> a filesystem.

Whee! <dances a jig>

> hppa1.1-hp-hpux10.20:
> build: Breaks in libsvn_client; looks like
> APR doesn't support dynamic loading on
> HP-UX. Need to look into that.

Huh?

Looks like good old "shl_load" is being used to me, in
apr/dso/unix/dso.c:

apr_status_t apr_dso_load(apr_dso_handle_t **res_handle, const char *path,
                        apr_pool_t *ctx)
{
#if defined(HPUX) || defined(HPUX10) || defined(HPUX11)
    shl_t os_handle = shl_load(path, BIND_IMMEDIATE|BIND_VERBOSE|BIND_NOSTART, 0L);
#elif defined(OSF1) || defined(SEQUENT) || defined(SNI) ||\
    (defined(__FreeBSD_version) && (__FreeBSD_version >= 220000))
    void *os_handle = dlopen((char *)path, RTLD_NOW | RTLD_GLOBAL);
#else
    void *os_handle = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
#endif
Received on Sat Oct 21 14:36:17 2006

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.