Are you sure you have applied the patch? It now should be:
xs/modperl_xs_util.h:104: rv = func(aTHX_ obj, buf, &wlen); \
This is the chunk :
/* XXX: we probably shouldn't croak here */
#define mpxs_write_loop(func, obj) \
while (MARK <= SP) { \
apr_size_t wlen; \
apr_status_t rv; \
char *buf = SvPV(*MARK, (STRLEN)wlen); \
MP_TRACE_o(MP_FUNC, "%d bytes [%s]", wlen, buf); \
rv = func(aTHX_ obj, buf, &wlen); \
if (rv != APR_SUCCESS) { \
Perl_croak(aTHX_ modperl_apr_strerror(rv)); \
} \
bytes += wlen; \
MARK++; \
}Is that right? The error's the same, none the less (even after a make clean)
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
