APR_WANT_IOVEC in apr_want.h

2011-03-27 Thread Guenter Knauf
I was just looking at this part again (BZ#50146): #ifdef APR_WANT_IOVEC #if APR_HAVE_IOVEC #if APR_HAVE_SYS_UIO_H #include sys/uio.h #endif #else struct iovec { void *iov_base; size_t iov_len; }; #endif /* apr_want is included at several layers; redefining APR_HAVE_IOVEC * now to

Re: APR_WANT_IOVEC in apr_want.h

2011-03-27 Thread William A. Rowe Jr.
On 3/27/2011 12:14 PM, Guenter Knauf wrote: I dont believe this fixes BZ#50146, but I think its better this way ... It's certainly cleaner.