Re: r11190 again! 0.2808_04 will not install in Strawberry Perl 5.10.0.2...
[email protected] ("Ken Williams")
| Newsgroups | perl.module.build |
|---|---|
| Message-ID | <[email protected]> |
On Mon, Sep 15, 2008 at 5:12 PM, Eric Wilhelm <[email protected]> wrote: > Any reason I can't use something like the following on win32? > > open(my $fh, '-|', $^X, @opts, '-e', $oneliner) or die $!; > my $output = do {local $/; readline($fh)}; The have_forkpipe() method tells us whether or not open($fh, '-|', ...) is supported. On Windows, sadly no. It would be nice if there were a Config.pm test for this, but I don't think there is. I suppose we could just test for it at runtime. -Ken