[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: David Glasser <glasser_at_davidglasser.net>
Date: Fri, 29 Feb 2008 14:24:37 -0800

On Fri, Feb 29, 2008 at 2:03 PM, Arfrever Frehtes Taifersar Arahesis
<arfrever.fta_at_gmail.com> wrote:
> 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
> ^

Oops. My bad.

--dave

-- 
David Glasser | glasser@davidglasser.net | http://www.davidglasser.net/
Received on 2008-02-29 23:24:51 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.