allow embedded null characters in diagnostics
[p5sagit/p5-mst-13.2.git] / ext / IO / Makefile.PL
index 05c7227..095d7c2 100644 (file)
@@ -1,24 +1,9 @@
 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",
        OBJECT          => '$(O_FILES)', 
-       DEFINE          => $define,
        MAN3PODS        => {},          # Pods will be built by installman.
 );