summaryrefslogtreecommitdiff
path: root/lib/perl5db.pl
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-07-06 16:30:53 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2021-10-08 19:21:33 +0100
commit2eb109a4d326f05244e37f956ca8cd8b0db22b19 (patch)
treea8298fe2c529c6d6438fd75c144d91b18823824d /lib/perl5db.pl
parent07a6208729c01c230010594c3e08a946ab0ccbef (diff)
downloadperl-2eb109a4d326f05244e37f956ca8cd8b0db22b19.tar.gz
Remove NetWare support
The build has been broken since 2009.
Diffstat (limited to 'lib/perl5db.pl')
-rw-r--r--lib/perl5db.pl10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/perl5db.pl b/lib/perl5db.pl
index 7a33abb484..77c9407135 100644
--- a/lib/perl5db.pl
+++ b/lib/perl5db.pl
@@ -1584,7 +1584,7 @@ We then determine what the console should be on various systems:
=back
Several other systems don't use a specific console. We C<undef $console>
-for those (Windows using a slave editor/graphical debugger, NetWare, OS/2
+for those (Windows using a slave editor/graphical debugger, OS/2
with a slave editor).
=cut
@@ -1595,12 +1595,6 @@ with a slave editor).
$console = undef;
}
- if ( $^O eq 'NetWare' ) {
-
- # /dev/tty is binary. use stdin for textmode
- $console = undef;
- }
-
# In OS/2, we need to use STDIN to get textmode too, even though
# it pretty much looks like Unix otherwise.
if ( defined $ENV{OS2_SHELL} and ( $slave_editor or $ENV{WINDOWID} ) )
@@ -8975,7 +8969,7 @@ Just checks the contents of C<$^O> and sets the C<$doccmd> global accordingly.
=cut
sub setman {
- $doccmd = $^O !~ /^(?:MSWin32|VMS|os2|dos|amigaos|riscos|NetWare)\z/s
+ $doccmd = $^O !~ /^(?:MSWin32|VMS|os2|dos|amigaos|riscos)\z/s
? "man" # O Happy Day!
: "perldoc"; # Alas, poor unfortunates
} ## end sub setman