This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove NetWare support
[perl5.git] / ext / DynaLoader / Makefile.PL
index 864af3e..9e9a109 100644 (file)
@@ -1,8 +1,9 @@
 use strict;
+use warnings;
+
 use ExtUtils::MakeMaker;
 
 my $is_mswin    = $^O eq 'MSWin32';
-my $is_netware  = $^O eq 'NetWare';
 my $is_vms      = $^O eq 'VMS';
 
 WriteMakefile(
@@ -31,7 +32,7 @@ sub MY::cflags {
 sub MY::postamble {
     my $test_xs;
 
-    if ($is_mswin || $is_netware || $is_vms) {
+    if ($is_mswin || $is_vms) {
        $test_xs = '';
     } else {
        $test_xs = <<'EOT';
@@ -54,7 +55,7 @@ DynaLoader.xs: $(DLSRC)
 
 sub MY::static {
     my $object;
-    if ($is_mswin || $is_netware) {
+    if ($is_mswin) {
        $object = '$(PERL_SRC)\\$(OBJECT)';
     } elsif ($is_vms) {
        $object = '$(PERL_SRC)$(OBJECT)';