Alien-Base
view release on metacpan or search on metacpan
but may show where the true problem lies
0.000_010 Apr 24, 2012
- Prevent build process from cwd-ing from underneath us (hopefully)
0.000_009 Apr 24, 2012
- Note: Released from 'dlopen' branch
- Uses new dynamic loading mechanism via DynaLoader
0.000_008 Apr 11, 2012
- Prevent do_system from changing wd globally
0.000_007 Apr 4, 2012
- Don't rebuild library on repeated M::B::dispatch
- More bugfixes
0.000_006 Apr 3, 2012
- Yet anther bugfix(?) release
0.000_005 Apr 2, 2012
- Bugfix: A::B::PkgConfig _manual key shouldn't emit undef values
t/alien_base.t view on Meta::CPAN
use Test2::Bundle::Extended;
use lib 'corpus/lib';
use Env qw( @PKG_CONFIG_PATH );
use File::Glob qw( bsd_glob );
use File::chdir;
use File::Spec;
eval {
use File::Temp qw( tempfile );
use File::Spec;
my($fh, $filename) = tempfile();
close $fh;
unlink $filename;
};
t/alien_base.t view on Meta::CPAN
}
};
};
done_testing;
package
FFI::CheckLib;
use File::Glob qw( bsd_glob );
use File::chdir;
BEGIN { $INC{'FFI/CheckLib.pm'} = __FILE__ }
sub find_lib {
my %args = @_;
if($args{libpath})
{
return unless -d $args{libpath};
return sort do {
local $CWD = $args{libpath};
map { File::Spec->rel2abs($_) } bsd_glob('*.so*');
};
}
else
{
if($args{lib} eq 'foo')
{
return ('/usr/lib/libfoo.so', '/usr/lib/libfoo.so.1');
}
else
{
( run in 0.819 second using v1.01-cache-2.11-cpan-49f99fa48dc )