diff options
Diffstat (limited to 'lib/ExtUtils/MakeMaker.pm')
-rw-r--r-- | lib/ExtUtils/MakeMaker.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm index a4cd6f46f7..82fe31285b 100644 --- a/lib/ExtUtils/MakeMaker.pm +++ b/lib/ExtUtils/MakeMaker.pm @@ -71,6 +71,7 @@ $Is_OS2 = $^O eq 'os2'; $Is_Mac = $^O eq 'MacOS'; $Is_Win32 = $^O eq 'MSWin32'; $Is_Cygwin= $^O eq 'cygwin'; +$Is_NetWare = $Config{'osname'} eq 'NetWare'; require ExtUtils::MM_Unix; @@ -84,6 +85,11 @@ if ($Is_OS2) { if ($Is_Mac) { require ExtUtils::MM_MacOS; } +if ($Is_NetWare) { + $^O = 'NetWare'; + require ExtUtils::MM_NW5; + $Is_Win32=0; +} if ($Is_Win32) { require ExtUtils::MM_Win32; } |