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

Re: svn commit: r31425 - in trunk: . subversion/libsvn_ra

From: David Glasser <glasser_at_davidglasser.net>
Date: Mon, 26 May 2008 09:18:34 -0700

Does this mean that if you're in --enable-runtime-module-search mode,
and you only have ra_serf (say) installed, you'll now need to
explicitly configure it?

--dave

On Sat, May 24, 2008 at 9:14 AM, <arfrever_at_tigris.org> wrote:
> Author: arfrever
> Date: Sat May 24 09:14:04 2008
> New Revision: 31425
>
> Log:
> Support the 'http-library' option when Subversion was configured
> with the '--enable-runtime-module-search' option.
>
> * configure.ac:
> Define SVN_HAVE_NEON when support for Neon is enabled.
> Define SVN_HAVE_SERF when support for Serf is enabled.
>
> * subversion/libsvn_ra/ra_loader.c: Define MUST_CHOOSE_DAV when
> SVN_HAVE_NEON and SVN_HAVE_SERF are defined.
>
> Modified:
> trunk/configure.ac
> trunk/subversion/libsvn_ra/ra_loader.c
>
> Modified: trunk/configure.ac
> URL: http://svn.collab.net/viewvc/svn/trunk/configure.ac?pathrev=31425&r1=31424&r2=31425
> ==============================================================================
> --- trunk/configure.ac Sat May 24 09:02:55 2008 (r31424)
> +++ trunk/configure.ac Sat May 24 09:14:04 2008 (r31425)
> @@ -86,9 +86,19 @@ AC_ARG_ENABLE(neon-version-check,
> [])
> SVN_LIB_NEON($NEON_ALLOWED_LIST, $NEON_RECOMMENDED_VER, $NEON_URL)
>
> +if test "$svn_lib_neon" = "yes"; then
> + AC_DEFINE([SVN_HAVE_NEON], 1,
> + [Defined if support for Neon is enabled])
> +fi
> +
> dnl Search for serf as an alternative to neon
> SVN_LIB_SERF
>
> +if test "$svn_lib_serf" = "yes"; then
> + AC_DEFINE([SVN_HAVE_SERF], 1,
> + [Defined if support for Serf is enabled])
> +fi
> +
> dnl Search for apr_memcache (only affects fs_fs)
> SVN_LIB_APR_MEMCACHE
>
>
> Modified: trunk/subversion/libsvn_ra/ra_loader.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_ra/ra_loader.c?pathrev=31425&r1=31424&r2=31425
> ==============================================================================
> --- trunk/subversion/libsvn_ra/ra_loader.c Sat May 24 09:02:55 2008 (r31424)
> +++ trunk/subversion/libsvn_ra/ra_loader.c Sat May 24 09:14:04 2008 (r31425)
> @@ -59,7 +59,7 @@
> ### any code which uses the pre-1.2 API svn_ra_get_ra_library
> ### instead of svn_ra_open. */
>
> -#if defined(SVN_LIBSVN_CLIENT_LINKS_RA_NEON) && defined (SVN_LIBSVN_CLIENT_LINKS_RA_SERF)
> +#if defined(SVN_HAVE_NEON) && defined(SVN_HAVE_SERF)
> #define MUST_CHOOSE_DAV
> #endif
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svn-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: svn-help_at_subversion.tigris.org
>
>

-- 
David Glasser | glasser@davidglasser.net | http://www.davidglasser.net/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-05-26 18:18:49 CEST

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.