remove I_POLL detection (Configure will do that now)
Gurusamy Sarathy [Sun, 29 Nov 1998 16:51:59 +0000 (16:51 +0000)]
p4raw-id: //depot/perl@2390

ext/IO/Makefile.PL

index 05c7227..5366f8e 100644 (file)
@@ -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",