X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=Makefile.PL;h=430cc537cbcc50834003b28285779cf846eb0508;hp=d4c09f91ccb1da7f24306aa617270674f50b8a9f;hb=3b0b8496006f89abcccdcc5f0322fed266e8ed53;hpb=9d97dcd6b7e20f9d3e3313a5d8436b7d5dedbc0c diff --git a/Makefile.PL b/Makefile.PL index d4c09f9..430cc53 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -39,12 +39,12 @@ print $is_gcc_34 ? "yes\n" : "no\n"; # Threads, Windows and 5.8.x don't seem to be best friends if ($^O eq 'MSWin32' and "$]" < 5.009) { - push @DEFINES, '-DI_MULTIPLICITY=0'; + push @DEFINES, '-DXSH_MULTIPLICITY=0'; } # Fork emulation got "fixed" in 5.10.1 if ($^O eq 'MSWin32' and "$]" < 5.010_001) { - push @DEFINES, '-DI_FORKSAFE=0'; + push @DEFINES, '-DXSH_FORKSAFE=0'; } @DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES; @@ -65,8 +65,13 @@ my %PREREQ_PM = ( my %BUILD_REQUIRES =( 'Config' => 0, 'ExtUtils::MakeMaker' => 0, + 'IO::Handle' => 0, + 'IO::Select' => 0, + 'IPC::Open3' => 0, 'POSIX' => 0, + 'Socket' => 0, 'Test::More' => 0, + 'lib' => 0, %PREREQ_PM, );