diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-09-21 15:41:03 -0400 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-22 03:30:38 +0000 |
commit | 67ac489efef76ba94d2f040ea58ff87e017e54a4 (patch) | |
tree | efc9c31e1920dfb4d861bdaeb035b7ce5c1ed375 | |
parent | 0bee926d0597a970b50b74fd2701dcaf793783d5 (diff) | |
download | perl-67ac489efef76ba94d2f040ea58ff87e017e54a4.tar.gz |
expand DOS-like table (was Re: test
suite on WinCE)
Message-Id: <20010921194103.G5494@blackrider>
p4raw-id: //depot/perl@12121
-rw-r--r-- | pod/perlport.pod | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/pod/perlport.pod b/pod/perlport.pod index b8a5a2ad62..e4a50b0a38 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -690,17 +690,22 @@ often assume nothing about their data. The C<$^O> variable and the C<$Config{archname}> values for various DOSish perls are as follows: - OS $^O $Config{'archname'} - -------------------------------------------- - MS-DOS dos - PC-DOS dos - OS/2 os2 - Windows 95 MSWin32 MSWin32-x86 - Windows 98 MSWin32 MSWin32-x86 - Windows NT MSWin32 MSWin32-x86 - Windows NT MSWin32 MSWin32-ALPHA - Windows NT MSWin32 MSWin32-ppc - Cygwin cygwin + OS $^O $Config{archname} ID Version + -------------------------------------------------------- + MS-DOS dos ? + PC-DOS dos ? + OS/2 os2 ? + Windows 3.1 ? ? 0 3 01 + Windows 95 MSWin32 MSWin32-x86 1 4 00 + Windows 98 MSWin32 MSWin32-x86 1 4 10 + Windows ME MSWin32 MSWin32-x86 1 ? + Windows NT MSWin32 MSWin32-x86 2 4 xx + Windows NT MSWin32 MSWin32-ALPHA 2 4 xx + Windows NT MSWin32 MSWin32-ppc 2 4 xx + Windows 2000 MSWin32 MSWin32-x86 2 5 xx + Windows XP MSWin32 MSWin32-x86 2 ? + Windows CE MSWin32 ? 3 + Cygwin cygwin ? The various MSWin32 Perl's can distinguish the OS they are running on via the value of the fifth element of the list returned from |