> The way that autoconf works, by using AC_ARG_WITH, we get multiple > options: > > --with-sendfile=yes > --with-sendfile > --with-sendfile=no > --without-sendfile
Oh, I see it now -- the option parser for configure adds a value of "yes" if the with value is not given, and adds a value of "no" if a without value is not given, so the macro doesn't need to worry about it at all. Never mind. ....Roy
