ext/Compress-Raw-Zlib/zlib-src/zutil.c Compress::Raw::Zlib
ext/Compress-Raw-Zlib/zlib-src/zutil.h Compress::Raw::Zlib
ext/Compress-Raw-Zlib/Zlib.xs Compress::Raw::Zlib
+ext/constant/lib/constant.pm For "use constant"
+ext/constant/t/constant.t See if compile-time constants work
ext/CPAN/lib/CPAN/API/HOWTO.pod recipe book for programming with CPAN.pm
ext/CPAN/lib/CPAN/Author.pm helper package for CPAN.pm
ext/CPAN/lib/CPAN/Bundle.pm helper package for CPAN.pm
lib/Config/Extensions.pm Convenient hash lookup for built extensions
lib/Config/Extensions.t See if Config::Extensions works
lib/Config.t See if Config works
-lib/constant.pm For "use constant"
-lib/constant.t See if compile-time constants work
lib/CORE.pod document the CORE namespace
lib/ctime.pl A ctime workalike
lib/Cwd.pm Various cwd routines (getcwd, fastcwd, chdir)
{
'MAINTAINER' => 'saper',
'DISTRIBUTION' => 'SAPER/constant-1.17.tar.gz',
- 'FILES' => q[lib/constant.{pm,t}],
+ 'FILES' => q[ext/constant],
'EXCLUDED' => [ qw( t/00-load.t
t/more-tests.t
t/pod-coverage.t
eg/synopsis.pl
)
],
- 'MAP' => { 'lib/' => 'lib/',
- 't/' => 'lib/',
- },
'CPAN' => 1,
'UPSTREAM' => 'blead',
},
use Config;
use Cwd;
+my @toolchain = qw(ext/constant/lib);
+
# This script acts as a simple interface for building extensions.
# It's actually a cut and shut of the Unix version ext/utils/makeext and the
$perl ||= "$up/miniperl";
my $return_dir = $up;
my $lib_dir = "$up/lib";
- $ENV{PERL5LIB} = $lib_dir;
+ $ENV{PERL5LIB}
+ = join $Config{path_sep}, $lib_dir, map {"$up/$_"} @toolchain;
unless (chdir "$ext_dir") {
warn "Cannot cd to $ext_dir: $!";