diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-29 16:51:59 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-29 16:51:59 +0000 |
commit | 406af250a711dc7c2d11536556d31a2d9433b19f (patch) | |
tree | 3de5447cf0e6e10a3e14e7ad876f393276d6ff6f /ext/IO | |
parent | 1f8488031ad013b6fc4a66ab2503ebf23dbf32aa (diff) | |
download | perl-406af250a711dc7c2d11536556d31a2d9433b19f.tar.gz |
remove I_POLL detection (Configure will do that now)
p4raw-id: //depot/perl@2390
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", |