/usr/local/share/perl5/ExtUtils
NameSizeModeActions
CBuilder/-0755rm
Command/-0755rm
Liblist/-0755rm
MakeMaker/-0755rm
CBuilder.pm88940444editdlrm
Command.pm78020444editdlrm
Liblist.pm95000444editdlrm
MakeMaker.pm1073730444editdlrm
Manifest.pm234390444editdlrm
MANIFEST.SKIP9710444editdlrm
Mkbootstrap.pm33060444editdlrm
Mksymlists.pm110020444editdlrm
MM.pm21380444editdlrm
MM_AIX.pm12900444editdlrm
MM_Any.pm820970444editdlrm
MM_BeOS.pm10440444editdlrm
MM_Cygwin.pm40850444editdlrm
MM_Darwin.pm9350444editdlrm
MM_DOS.pm9760444editdlrm
MM_MacOS.pm8920444editdlrm
MM_NW5.pm53900444editdlrm
MM_OS2.pm31410444editdlrm
MM_QNX.pm8940444editdlrm
MM_Unix.pm1094590444editdlrm
MM_UWIN.pm9810444editdlrm
MM_VMS.pm677410444editdlrm
MM_VOS.pm7490444editdlrm
MM_Win32.pm144020444editdlrm
MM_Win95.pm12810444editdlrm
MY.pm6780444editdlrm
testlib.pm9160444editdlrm
Edit: /usr/local/share/perl5/ExtUtils/MM_AIX.pm (1290B)
package ExtUtils::MM_AIX; use strict; our $VERSION = '7.24'; $VERSION = eval $VERSION; require ExtUtils::MM_Unix; our @ISA = qw(ExtUtils::MM_Unix); =head1 NAME ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix =head1 SYNOPSIS Don't use this module directly. Use ExtUtils::MM and let it choose. =head1 DESCRIPTION This is a subclass of ExtUtils::MM_Unix which contains functionality for AIX. Unless otherwise stated it works just like ExtUtils::MM_Unix =head2 Overridden methods =head3 dlsyms Define DL_FUNCS and DL_VARS and write the *.exp files. =cut sub dlsyms { my($self,%attribs) = @_; return '' unless $self->needs_linking; my @m; # these will need XSMULTI-fying but maybe that already happens push @m,"\ndynamic :: $self->{BASEEXT}.exp\n\n" unless $self->{SKIPHASH}{'dynamic'}; # dynamic and static are subs, so... push @m,"\nstatic :: $self->{BASEEXT}.exp\n\n" unless $self->{SKIPHASH}{'static'}; # we avoid a warning if we tick them join "\n", @m, $self->xs_dlsyms_iterator(\%attribs); } =head3 xs_dlsyms_ext On AIX, is C<.exp>. =cut sub xs_dlsyms_ext { '.exp'; } =head1 AUTHOR Michael G Schwern with code from ExtUtils::MM_Unix =head1 SEE ALSO L =cut 1;