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

Re: svn commit: r29646 - trunk

From: Arfrever Frehtes Taifersar Arahesis <arfrever.fta_at_gmail.com>
Date: Fri, 29 Feb 2008 23:03:19 +0100

2008-02-29 22:58:09 glasser_at_tigris.org napisaƂ(a):
> Author: glasser
> Date: Fri Feb 29 13:58:32 2008
> New Revision: 29646
>
> Log:
> * configure.ac:
> Rename enable_dso to use_dso so --enable-dso is truly ignored as an
> argument.
>
> Patch by: Dan Christian <dchristian_at_google.com>
>
>
> Modified:
> trunk/configure.ac
>
> Modified: trunk/configure.ac
> URL: http://svn.collab.net/viewvc/svn/trunk/configure.ac?pathrev=29646&r1=29645&r2=29646
> ==============================================================================
> --- trunk/configure.ac (original)
> +++ trunk/configure.ac Fri Feb 29 13:58:32 2008
> @@ -598,7 +598,7 @@
> [Turn on dynamic loading of RA/FS libraries]),
> [
> if test "$enableval" = "yes"; then
> - enable_dso=yes
> + use_dso=yes
> if test "$enable_shared" = "no"; then
> AC_MSG_ERROR([--enable-runtime-module-search conflicts with --disable-shared])
> fi
> @@ -607,7 +607,7 @@
> fi
> ])
>
> -if test "$enable_shared" = "no" || test "$enable_dso" != "yes"; then
> +if test "$enable_shared" = "no" || test "use_dso" != "yes"; then

Shouldn't it be:
if test "$enable_shared" = "no" || test "$use_dso" != "yes"; then
                                         ^

> ### We want ra_local first to handle the following scenario:
> ### user has neon and db3 in /usr/local, and db4 in
> ### /usr/local/BerkeleyDB.4.0. If libsvn_ra_neon.la comes before
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svn-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: svn-help_at_subversion.tigris.org
>
>

-- 
Arfrever Frehtes Taifersar Arahesis

Received on 2008-02-29 23:04:40 CET

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.