On Tue, 6 Mar 2001, Roy T. Fielding wrote:

> On Tue, Mar 06, 2001 at 04:54:49AM -0000, [EMAIL PROTECTED] wrote:
> >   +++ configure.in  2001/03/06 04:54:49     1.256
> >   @@ -350,6 +350,13 @@
> >    dnl threaded poll() and we don't want to use sendfile on early FreeBSD
> >    dnl systems if we are also using threads.
> >
> >   +AC_ARG_WITH(sendfile, [  --with-sendfile  Force sendfile to be on or 
> > off],
> >   +  [ if test "$withval" = "yes"; then
> >   +        sendfile="1"
> >   +    else
> >   +        sendfile="0"
> >   +    fi ] )
> >   +
>
> This seems to say that --with-sendfile means --without-sendfile.  I think
> that --with options should always default to "yes" if no =value is given.
> Otherwise, the option should be --disable-sendfile.

The way that autoconf works, by using AC_ARG_WITH, we get multiple
options:

        --with-sendfile=yes
        --with-sendfile
        --with-sendfile=no
        --without-sendfile

The first two are the same, as are the last two.

The logic in that file makes --with-sendfile force sendfile to be on, and
--without-sendfile to force it to be off.

Ryan

_______________________________________________________________________________
Ryan Bloom                              [EMAIL PROTECTED]
406 29th St.
San Francisco, CA 94131
-------------------------------------------------------------------------------


Reply via email to