The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for Proc-Memory was generated by
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.38.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

use ExtUtils::MakeMaker;

use Alien::libvas;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Peek/Poke other processes' address spaces",
  "AUTHOR" => "Ahmad Fatoum <athreef\@cpan.org>",
  "BUILD_REQUIRES" => {
    "Alien::libvas" => "0.13",
    "ExtUtils::MakeMaker" => 0
  },
  "CONFIGURE_REQUIRES" => {
    "Alien::libvas" => "0.13",
    "ExtUtils::MakeMaker" => 0,
    "Inline::C" => 0
  },
  "DISTNAME" => "Proc-Memory",
  "LICENSE" => "perl",
  "NAME" => "Proc::Memory",
  "PREREQ_PM" => {
    "Alien::libvas" => "0.13",
    "Carp" => 0,
    "Inline" => "0.56",
    "Scalar::Util" => 0,
    "Sentinel" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Test::More" => 0
  },
  "VERSION" => "0.006",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

%WriteMakefileArgs = (
    %WriteMakefileArgs,
    CCFLAGS => Alien::libvas->cflags,
    LIBS => Alien::libvas->libs,
);

my %FallbackPrereqs = (
  "Alien::libvas" => "0.13",
  "Carp" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Inline" => "0.56",
  "Scalar::Util" => 0,
  "Sentinel" => 0,
  "Test::More" => 0,
  "strict" => 0,
  "warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);