This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More MPE/iX tweaks from Mark Bixby.
authorJarkko Hietaniemi <jhi@iki.fi>
Fri, 22 Jun 2001 01:03:14 +0000 (01:03 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Fri, 22 Jun 2001 01:03:14 +0000 (01:03 +0000)
p4raw-id: //depot/perl@10806

perl.c
t/op/magic.t

diff --git a/perl.c b/perl.c
index a846890..5951e22 100644 (file)
--- a/perl.c
+++ b/perl.c
@@ -2354,7 +2354,7 @@ Perl_moreswitches(pTHX_ char *s)
 #endif
 #ifdef MPE
        PerlIO_printf(PerlIO_stdout(),
-                     "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-1999\n");
+                     "MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-2001\n");
 #endif
 #ifdef OEMVS
        PerlIO_printf(PerlIO_stdout(),
index 935e574..aa568a7 100755 (executable)
@@ -26,6 +26,7 @@ $Is_VMS     = $^O eq 'VMS';
 $Is_Dos   = $^O eq 'dos';
 $Is_os2   = $^O eq 'os2';
 $Is_Cygwin   = $^O eq 'cygwin';
+$Is_MPE     = $^O eq 'mpeix';          
 $PERL = ($Is_MSWin32 ? '.\perl' : ($Is_NetWare ? 'perl' : './perl'));
 
 print "1..41\n";
@@ -40,7 +41,7 @@ open(FOO,'ajslkdfpqjsjfk');
 ok 2, $!, $!;
 close FOO; # just mention it, squelch used-only-once
 
-if ($Is_MSWin32 || $Is_NetWare || $Is_Dos) {
+if ($Is_MSWin32 || $Is_NetWare || $Is_Dos || $Is_MPE) {
     ok "3 # skipped",1;
     ok "4 # skipped",1;
 }