Steve Hay <[EMAIL PROTECTED]> writes: > #define PerlLIO_link(oldname, newname) link((oldname), (newname)) > #define link win32_link
Ew. [...] > I'm sure not where this needs fixing -- Perl, mod_perl, or libapreq -- > but now would be a good time whichever of those it is to be! IMO submit a tested patch to libapreq's Param.xs that does this (where MY_PLATFORM is suitably defined to match the above): #ifdef MY_PLATFORM #undef PerlLIO_link #define PerlLIO_link(oldname, newname) win32_link(oldname, newname) #endif -- Joe Schaefer --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
