/openbsd-src/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/ |
H A D | CoreList.pm | 456 'ExtUtils::MakeMaker' => undef, 502 'ExtUtils::Liblist' => undef, 503 'ExtUtils::Manifest' => undef, 504 'ExtUtils::Mkbootstrap' => undef, 519 'ExtUtils::Install' => undef, 520 'ExtUtils::MM_OS2' => undef, 521 'ExtUtils::MM_Unix' => undef, 522 'ExtUtils::MM_VMS' => undef, 523 'ExtUtils::MakeMaker' => '5.21', 524 'ExtUtils [all...] |
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/ |
H A D | version.pm | 3 # use by ExtUtils::Makemaker and its dependencies to bootstrap when 7 # ExtUtils::MakeMaker::version::vpp and alias various *version functions 11 package ExtUtils::MakeMaker::version; 27 eval "use ExtUtils::MakeMaker::version::vpp"; 31 $INC{'version.pm'} = $INC{'ExtUtils/MakeMaker/version.pm'}; 32 push @version::ISA, "ExtUtils::MakeMaker::version::vpp"; 34 *version::qv = \&ExtUtils::MakeMaker::version::vpp::qv; 35 *version::declare = \&ExtUtils::MakeMaker::version::vpp::declare; 36 *version::_VERSION = \&ExtUtils::MakeMaker::version::vpp::_VERSION; 37 *version::vcmp = \&ExtUtils::MakeMaker::version::vpp::vcmp; [all …]
|
H A D | FAQ.pod | 1 package ExtUtils::MakeMaker::FAQ; 11 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About MakeMaker 15 FAQs, tricks and tips for L<ExtUtils::MakeMaker>. 61 L<ExtUtils::MakeMaker/INSTALL_BASE> for details. To get MM and MB to 329 'dist'). See L<ExtUtils::MakeMaker/"Module Meta-Data">. 344 C<ExtUtils::Manifest::manifind()> to read the MANIFEST and File::Find 354 use ExtUtils::Manifest qw(maniread); 440 use ExtUtils::MakeMaker; 561 ExtUtils::MM_Any 563 ExtUtils::MM_Unix [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/ |
H A D | Packlist.t | 10 BEGIN { use_ok( 'ExtUtils::Packlist' ); } 12 is( ref(ExtUtils::Packlist::mkfh()), 'GLOB', 'mkfh() should return a FH' ); 15 my $pl = ExtUtils::Packlist->new(); 16 isa_ok( $pl, 'ExtUtils::Packlist' ); 17 is( ref tied %$pl, 'ExtUtils::Packlist', 'obj should be tied underneath' ); 20 $pl = ExtUtils::Packlist::TIEHASH( 'tieclass', 'packfile' ); 25 ExtUtils::Packlist::STORE($pl, 'key', 'value'); 30 is( ExtUtils::Packlist::FETCH($pl, 'foo'), 'bar', 'check FETCH()' ); 49 is( ExtUtils::Packlist::FIRSTKEY($pl), $first, 52 is( ExtUtils::Packlist::NEXTKEY($pl), $second, [all …]
|
H A D | Installed.t | 4 # Test ExtUtils::Installed 23 BEGIN { use_ok( 'ExtUtils::Installed' ) } 28 my $ei = bless( {}, 'ExtUtils::Installed' ); 118 local *ExtUtils::Installed::Config; 119 %ExtUtils::Installed::Config = ( 130 my $realei = ExtUtils::Installed->new(); 131 isa_ok( $realei, 'ExtUtils::Installed' ); 132 isa_ok( $realei->{Perl}{packlist}, 'ExtUtils::Packlist' ); 137 isa_ok( $realei->{FakeMod}{packlist}, 'ExtUtils::Packlist' ); 144 local *ExtUtils::Installed::Config; [all …]
|
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/ |
H A D | 513-t-merge.t | 6 use ExtUtils::Typemaps; 29 my $first = ExtUtils::Typemaps->new(file => $first_typemap_file); 30 isa_ok($first, 'ExtUtils::Typemaps'); 31 my $second = ExtUtils::Typemaps->new(file => $second_typemap_file); 32 isa_ok($second, 'ExtUtils::Typemaps'); 41 my $first = ExtUtils::Typemaps->new(file => $first_typemap_file); 42 isa_ok($first, 'ExtUtils::Typemaps'); 52 my $first = ExtUtils::Typemaps->new(file => $first_typemap_file); 53 isa_ok($first, 'ExtUtils::Typemaps'); 63 my $second = ExtUtils::Typemaps->new(file => $second_typemap_file); [all …]
|
H A D | 510-t-bare.t | 6 use ExtUtils::Typemaps; 10 ok(ExtUtils::Typemaps->new()->is_empty(), "This is an empty typemap"); 15 my $map = ExtUtils::Typemaps->new(); 25 isa_ok($type, 'ExtUtils::Typemaps::Type'); 44 my $map = ExtUtils::Typemaps->new(); 58 isa_ok($type, 'ExtUtils::Typemaps::Type'); 64 isa_ok($in, 'ExtUtils::Typemaps::InputMap'); 75 my $map = ExtUtils::Typemaps->new(); 89 isa_ok($type, 'ExtUtils::Typemaps::Type'); 95 isa_ok($in, 'ExtUtils::Typemaps::OutputMap'); [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/ |
H A D | MM_DOS.pm | 1 package ExtUtils::MM_DOS; 9 require ExtUtils::MM_Any; 10 require ExtUtils::MM_Unix; 11 our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix ); 16 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix 21 Use ExtUtils::MM and let it choose. 25 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality 28 Unless otherwise stated, it works just like ExtUtils::MM_Unix. 67 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix 71 L<ExtUtils::MM_Unix>, L<ExtUtils::MakeMaker>
|
H A D | MM.pm | 1 package ExtUtils::MM; 5 use ExtUtils::MakeMaker::Config; 10 require ExtUtils::Liblist; 11 require ExtUtils::MakeMaker; 12 our @ISA = qw(ExtUtils::Liblist ExtUtils::MakeMaker); 16 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass 20 require ExtUtils::MM; 27 ExtUtils::MM is a subclass of L<ExtUtils::MakeMaker> which automatically 29 (ie. L<ExtUtils::MM_Unix>, etc...). 32 MakeMaker modules outside of ExtUtils/). [all …]
|
H A D | MM_UWIN.pm | 1 package ExtUtils::MM_UWIN; 8 require ExtUtils::MM_Unix; 9 our @ISA = qw(ExtUtils::MM_Unix); 14 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix 19 Use ExtUtils::MM and let it choose. 23 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for 26 Unless otherwise stated it works just like ExtUtils::MM_Unix. 58 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix 62 L<ExtUtils::MM_Win32>, L<ExtUtils::MakeMaker>
|
H A D | MM_BeOS.pm | 1 package ExtUtils::MM_BeOS; 8 ExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker 12 use ExtUtils::MM_BeOS; # Done internally by ExtUtils::MakeMaker if needed 16 See L<ExtUtils::MM_Unix> for a documentation of the methods provided 24 use ExtUtils::MakeMaker::Config; 26 require ExtUtils::MM_Any; 27 require ExtUtils::MM_Unix; 29 our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
|
H A D | MM_VOS.pm | 1 package ExtUtils::MM_VOS; 8 require ExtUtils::MM_Unix; 9 our @ISA = qw(ExtUtils::MM_Unix); 14 ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix 19 Use ExtUtils::MM and let it choose. 23 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for 26 Unless otherwise stated it works just like ExtUtils::MM_Unix. 43 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix 47 L<ExtUtils::MakeMaker>
|
H A D | MM_QNX.pm | 1 package ExtUtils::MM_QNX; 8 require ExtUtils::MM_Unix; 9 our @ISA = qw(ExtUtils::MM_Unix); 14 ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix 19 Use ExtUtils::MM and let it choose. 23 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for 26 Unless otherwise stated it works just like ExtUtils::MM_Unix. 50 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix 54 L<ExtUtils::MakeMaker>
|
H A D | MM_AIX.pm | 1 package ExtUtils::MM_AIX; 8 use ExtUtils::MakeMaker::Config; 9 require ExtUtils::MM_Unix; 10 our @ISA = qw(ExtUtils::MM_Unix); 14 ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix 19 Use ExtUtils::MM and let it choose. 23 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for 26 Unless otherwise stated it works just like ExtUtils::MM_Unix. 71 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix 75 L<ExtUtils::MakeMaker>
|
H A D | MY.pm | 1 package ExtUtils::MY; 4 require ExtUtils::MM; 8 our @ISA = qw(ExtUtils::MM); 12 our @ISA = qw(ExtUtils::MY); 20 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization 33 ExtUtils::MY is a subclass of L<ExtUtils::MM>. It is provided in your 38 ExtUtils::MY might turn out to be a temporary solution, but MY won't
|
H A D | MM_Cygwin.pm | 1 package ExtUtils::MM_Cygwin; 6 use ExtUtils::MakeMaker::Config; 9 require ExtUtils::MM_Unix; 10 require ExtUtils::MM_Win32; 11 our @ISA = qw( ExtUtils::MM_Unix ); 19 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in ExtUtils::MakeMaker 23 use ExtUtils::MM_Cygwin; # Done internally by ExtUtils::MakeMaker if needed 27 See L<ExtUtils::MM_Unix> for a documentation of the methods provided there. 118 use L<ExtUtils::MM_Unix> to determine if it may be a command. 119 Otherwise use the tests from L<ExtUtils::MM_Win32>. [all …]
|
H A D | MM_OS390.pm | 1 package ExtUtils::MM_OS390; 8 use ExtUtils::MakeMaker::Config; 9 require ExtUtils::MM_Unix; 10 our @ISA = qw(ExtUtils::MM_Unix); 14 ExtUtils::MM_OS390 - OS390 specific subclass of ExtUtils::MM_Unix 19 Use ExtUtils::MM and let it choose. 23 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for 26 Unless otherwise stated it works just like ExtUtils::MM_Unix. 79 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix 83 L<ExtUtils::MakeMaker>
|
H A D | MM_OS2.pm | 1 package ExtUtils::MM_OS2; 6 use ExtUtils::MakeMaker qw(neatvalue); 12 require ExtUtils::MM_Any; 13 require ExtUtils::MM_Unix; 14 our @ISA = qw(ExtUtils::MM_Any ExtUtils::MM_Unix); 20 ExtUtils::MM_OS2 - methods to override UN*X behaviour in ExtUtils::MakeMaker 24 use ExtUtils::MM_OS2; # Done internally by ExtUtils::MakeMaker if needed 28 See L<ExtUtils::MM_Unix> for a documentation of the methods provided
|
H A D | MM_Win95.pm | 1 package ExtUtils::MM_Win95; 9 require ExtUtils::MM_Win32; 10 our @ISA = qw(ExtUtils::MM_Win32); 12 use ExtUtils::MakeMaker::Config; 17 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X 25 This is a subclass of L<ExtUtils::MM_Win32> containing changes necessary 72 See https://metacpan.org/release/ExtUtils-MakeMaker.
|
/openbsd-src/regress/usr.bin/make/ |
H A D | mk16 | 61 xsubpp 1 lib/ExtUtils/xsubpp \ 115 ExtUtils::Command 3p lib/ExtUtils/Command.pm \ 116 ExtUtils::Embed 3p lib/ExtUtils/Embed.pm \ 117 ExtUtils::Install 3p lib/ExtUtils/Install.pm \ 118 ExtUtils::Installed 3p lib/ExtUtils/Installed.pm \ 119 ExtUtils::Liblist 3p lib/ExtUtils/Liblist.pm \ 120 ExtUtils::MM_Unix 3p lib/ExtUtils/MM_Unix.pm \ 121 ExtUtils::MakeMaker 3p lib/ExtUtils/MakeMaker.pm \ 122 ExtUtils::Manifest 3p lib/ExtUtils/Manifest.pm \ 123 ExtUtils::Miniperl 3p lib/ExtUtils/Miniperl.pm \ [all …]
|
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/t/ |
H A D | 04-base.t | 9 use ExtUtils::CBuilder::Base; 22 $base = ExtUtils::CBuilder::Base->new(); 23 ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" ); 24 isa_ok( $base, 'ExtUtils::CBuilder::Base' ); 28 $base = ExtUtils::CBuilder::Base->new( 31 ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" ); 32 isa_ok( $base, 'ExtUtils::CBuilder::Base' ); 40 $base = ExtUtils::CBuilder::Base->new(); 41 ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" ); 42 isa_ok( $base, 'ExtUtils::CBuilder::Base' ); [all …]
|
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/ |
H A D | Cmd.pm | 1 package ExtUtils::Typemaps::Cmd; 7 use ExtUtils::Typemaps; 29 $final_tm = ExtUtils::Typemaps->new; 57 foreach my $module ($ident, "ExtUtils::Typemaps::$ident") { 65 foreach my $module ("ExtUtils::Typemaps::$ident", "$ident") { 77 return ExtUtils::Typemaps->new(file => $ident); 104 ExtUtils::Typemaps::Cmd - Quick commands for handling typemaps 113 Loads C<ExtUtils::Typemaps::Excommunicated>, instantiates an object, 118 This is a helper module for L<ExtUtils::Typemaps> for quick 130 or from a module that is an C<ExtUtils::Typemaps> subclass. [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/ |
H A D | MM_OS2.t | 19 package ExtUtils::MM_OS2; 26 use_ok( 'ExtUtils::MM_OS2' ); 27 ok( grep( 'ExtUtils::MM_OS2', @MM::ISA), 28 'ExtUtils::MM_OS2 should be parent of MM' ); 36 }, 'ExtUtils::MM_OS2'); 81 *ExtUtils::MM_OS2::system = sub { 86 *ExtUtils::MM_OS2::unlink = sub { 114 local *ExtUtils::MM_Unix::static_lib; 115 *ExtUtils::MM_Unix::static_lib = sub { 123 my $ret = ExtUtils::MM_OS2::static_lib( $args ); [all …]
|
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/ |
H A D | Eval.pm | 1 package ExtUtils::ParseXS::Eval; 9 ExtUtils::ParseXS::Eval - Clean package to evaluate code in 13 use ExtUtils::ParseXS::Eval; 14 my $rv = ExtUtils::ParseXS::Eval::eval_typemap_code( 23 (formerly ExtUtils::ParseXS package variables) 30 typemaps, so beware. Variables set up from the ExtUtils::ParseXS object: 57 (formerly ExtUtils::ParseXS package variables) 64 typemaps, so beware. Variables set up from the ExtUtils::ParseXS object: 91 this could be part of C<ExtUtils::Typemaps>.
|
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/ |
H A D | Makefile.PL | 7 use ExtUtils::MakeMaker; 13 "ExtUtils::MakeMaker" => 0 15 "DISTNAME" => "ExtUtils-CBuilder", 17 "NAME" => "ExtUtils::CBuilder", 20 "ExtUtils::MakeMaker" => "6.30", 41 "ExtUtils::MakeMaker" => "6.30", 53 unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { 60 unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
|