Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
perl /
lib /
5.30.0 /
ExtUtils /
Delete
Unzip
Name
Size
Permission
Date
Action
CBuilder
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Command
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Constant
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Liblist
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
MakeMaker
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
ParseXS
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
Typemaps
[ DIR ]
drwxr-xr-x
2019-05-31 11:39
CBuilder.pm
8.67
KB
-r--r--r--
2019-05-31 11:39
Command.pm
7.62
KB
-r--r--r--
2019-05-31 11:39
Constant.pm
14.7
KB
-r--r--r--
2019-05-31 11:39
Embed.pm
12.45
KB
-r--r--r--
2019-05-31 11:39
Install.pm
40.06
KB
-r--r--r--
2019-05-31 11:39
Installed.pm
14.03
KB
-r--r--r--
2019-05-31 11:39
Liblist.pm
9.28
KB
-r--r--r--
2019-05-31 11:39
MANIFEST.SKIP
1.08
KB
-r--r--r--
2019-05-31 11:39
MM.pm
2.09
KB
-r--r--r--
2019-05-31 11:39
MM_AIX.pm
1.37
KB
-r--r--r--
2019-05-31 11:39
MM_Any.pm
80.81
KB
-r--r--r--
2019-05-31 11:39
MM_BeOS.pm
1.02
KB
-r--r--r--
2019-05-31 11:39
MM_Cygwin.pm
3.99
KB
-r--r--r--
2019-05-31 11:39
MM_DOS.pm
1.03
KB
-r--r--r--
2019-05-31 11:39
MM_Darwin.pm
936
B
-r--r--r--
2019-05-31 11:39
MM_MacOS.pm
892
B
-r--r--r--
2019-05-31 11:39
MM_NW5.pm
5.34
KB
-r--r--r--
2019-05-31 11:39
MM_OS2.pm
3.14
KB
-r--r--r--
2019-05-31 11:39
MM_QNX.pm
894
B
-r--r--r--
2019-05-31 11:39
MM_UWIN.pm
981
B
-r--r--r--
2019-05-31 11:39
MM_Unix.pm
108.25
KB
-r--r--r--
2019-05-31 11:39
MM_VMS.pm
66.52
KB
-r--r--r--
2019-05-31 11:39
MM_VOS.pm
749
B
-r--r--r--
2019-05-31 11:39
MM_Win32.pm
14.06
KB
-r--r--r--
2019-05-31 11:39
MM_Win95.pm
1.25
KB
-r--r--r--
2019-05-31 11:39
MY.pm
678
B
-r--r--r--
2019-05-31 11:39
MakeMaker.pm
105.66
KB
-r--r--r--
2019-05-31 11:39
Manifest.pm
22.92
KB
-r--r--r--
2019-05-31 11:39
Miniperl.pm
7.5
KB
-r--r--r--
2019-05-31 11:39
Mkbootstrap.pm
3.23
KB
-r--r--r--
2019-05-31 11:39
Mksymlists.pm
10.74
KB
-r--r--r--
2019-05-31 11:39
Packlist.pm
8.36
KB
-r--r--r--
2019-05-31 11:39
ParseXS.pm
65.3
KB
-r--r--r--
2019-05-31 11:39
ParseXS.pod
4.3
KB
-r--r--r--
2019-05-31 11:39
Typemaps.pm
26.26
KB
-r--r--r--
2019-05-31 11:39
testlib.pm
916
B
-r--r--r--
2019-05-31 11:39
typemap
11.05
KB
-r--r--r--
2019-05-31 11:39
xsubpp
4.95
KB
-r--r--r--
2019-05-31 11:39
Save
Rename
package ExtUtils::MM_Win95; use strict; our $VERSION = '7.34'; $VERSION = eval $VERSION; require ExtUtils::MM_Win32; our @ISA = qw(ExtUtils::MM_Win32); use ExtUtils::MakeMaker::Config; =head1 NAME ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X =head1 SYNOPSIS You should not be using this module directly. =head1 DESCRIPTION This is a subclass of ExtUtils::MM_Win32 containing changes necessary to get MakeMaker playing nice with command.com and other Win9Xisms. =head2 Overridden methods Most of these make up for limitations in the Win9x/nmake command shell. =over 4 =item max_exec_len Win98 chokes on things like Encode if we set the max length to nmake's max of 2K. So we go for a more conservative value of 1K. =cut sub max_exec_len { my $self = shift; return $self->{_MAX_EXEC_LEN} ||= 1024; } =item os_flavor Win95 and Win98 and WinME are collectively Win9x and Win32 =cut sub os_flavor { my $self = shift; return ($self->SUPER::os_flavor, 'Win9x'); } =back =head1 AUTHOR Code originally inside MM_Win32. Original author unknown. Currently maintained by Michael G Schwern C<schwern@pobox.com>. Send patches and ideas to C<makemaker@perl.org>. See https://metacpan.org/release/ExtUtils-MakeMaker. =cut 1;