From: Gurusamy Sarathy Date: Sun, 29 Nov 1998 16:51:59 +0000 (+0000) Subject: remove I_POLL detection (Configure will do that now) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=406af250a711dc7c2d11536556d31a2d9433b19f;p=p5sagit%2Fp5-mst-13.2.git remove I_POLL detection (Configure will do that now) p4raw-id: //depot/perl@2390 --- diff --git a/ext/IO/Makefile.PL b/ext/IO/Makefile.PL index 05c7227..5366f8e 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 - -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",