[perl #46681] [TODO] [C] Use strerror_r instead of strerror

2007-11-28 Thread Joe Sadusk via RT
Heh, ok, grammar fixed and resubmitted. And yes, I've tested it on Linux (Fedora 7) and Windows with MSVC 2005. I don't have a non-glibc unix to try it out with however. Joe On Mon Nov 26 09:50:28 2007, [EMAIL PROTECTED] wrote: > On Sunday 25 November 2007 21:48:01 Joe Sadusk

[perl #46681] [TODO] [C] Use strerror_r instead of strerror

2007-11-26 Thread Joe Sadusk via RT
Ok, here's try two. Platform specific stuff has been moved into config/gen/platform, and non-win32 platforms use strerror_r directly. On Fri Nov 23 01:29:35 2007, kjs wrote: > On Nov 22, 2007 9:03 PM, Joe Sadusk via RT > <[EMAIL PROTECTED]> wrote: > > Reposting this b

[perl #46681] [TODO] [C] Use strerror_r instead of strerror

2007-11-22 Thread Joe Sadusk via RT
Reposting this because this is my first patch, and it didn't occur to me that if I don't CC perl6-internals, no one would notice it. It turns out that strerror_r is POSIX only, and windows has the slightly different strerror_s (exactly the same except the arguments are in a different order). I def