On Fri, Jan 28, 2005 at 09:23:55AM -0000, Rafael Garcia-Suarez wrote:
> Please don't forget to integrate this platform-specific patch from
> bleadperl :
>
> Change 23849 by rgs@grubert on 2005/01/21 15:26:10
>
> Subject: [perl #33892] Add Interix support
> From: Todd Vierling (via RT) <perlbug-followup@xxxxxxxx>
> Date: 21 Jan 2005 14:36:31 -0000
> Message-ID: <rt-3.0.11-33892-106280.17.6407478352545@xxxxxxxx>
I think the patch is wrong, or adding more wrongness.
-$Is_BSD = $^O =~ /^(?:free|net|open)bsd|bsdos$/;
+$Is_BSD = $^O =~ /^(?:free|net|open)bsd|bsdos|interix$/;
That second pair of bsd|bsdos isn't enclosed in parens. Furthermore,
its not "freeinterix" its just "interix".
Here's the right line.
$Is_BSD = $^O =~ /^(?:free|net|open)bsd$/ or
$^O eq 'bsdos' or $^O eq 'interix';
|
Try Searching:
servers, voip, java, networking, microsoft ...
|
|
|
|