Alien-FFI

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


0.04_01   2015-01-25 22:57:40 -0500
  - work around some weirdisms in windows

0.04      2015-01-23 17:15:50 -0500
  - bump version requirement for Alien::Base 0.007
    I am pretty sure this will correct a cpan testers failure that I am seeing
    in FFI::Platypus.

0.03      2015-01-21 07:30:24 -0500
  - Work-around for unthreaded OpenBSD.

0.02      2014-09-11 16:56:51 -0400
  - make Alien::Base a configure requires

0.01      2014-09-11 14:40:53 -0400
  - initial version

alienfile  view on Meta::CPAN

    }
    if(@arch)
    {
      $configure .= " LDFLAGS='@arch'";
      $configure .= " CFLAGS='@arch'";
    }
  }

  if($^O eq 'openbsd')
  {
    unless($Config{usethreads})
    {
      meta->after_hook( gather_share => sub {
        my($build) = @_;
        $build->runtime_prop->{$_} .= " /usr/lib/libpthread.a" for qw( libs libs_static );
      });
    }
  }

  if($Config{archname} =~ /^aarch64-linux/)
  {
    # libffi 3.4.3 broke Linux Arm64
    # https://github.com/PerlFFI/FFI-Platypus/issues/374
    # For now not black listing it for other Arm64
    # systems (like macOS) because I did not see the



( run in 0.390 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )