diff options
Diffstat (limited to 'ext/IO')
-rw-r--r-- | ext/IO/Makefile.PL | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/IO/Makefile.PL b/ext/IO/Makefile.PL index 05c7227dcb..5366f8ea75 100644 --- a/ext/IO/Makefile.PL +++ b/ext/IO/Makefile.PL @@ -1,20 +1,6 @@ use ExtUtils::MakeMaker; use Config qw(%Config); -#--- Attempt to find <poll.h> - -my $define = ""; - -my @inc = split(/\s+/, join(" ",$Config{'usrinc'},$Config{'incpth'},$Config{'locincpth'})); -foreach $path (@inc) { - if(-f $path . "/poll.h") { - $define .= "-DI_POLL "; - last; - } -} - -#--- Write the Makefile - WriteMakefile( VERSION_FROM => "IO.pm", NAME => "IO", |