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

use strict;
use warnings;

# inserted by Dist::Zilla::Plugin::CheckLib 0.006
use Devel::CheckLib;
check_lib_or_exit(
    header => 'gmp.h',
    lib => 'gmp',
);

use 5.006;
use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "High speed arbitrary size integer math",
  "AUTHOR" => "Shlomi Fish <shlomif\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "Devel::CheckLib" => "0.9",
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Math-GMP",
  "LICENSE" => "lgpl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "Math::GMP",
  "PREREQ_PM" => {
    "AutoLoader" => 0,
    "Carp" => 0,
    "DynaLoader" => 0,
    "Exporter" => 0,
    "overload" => 0,
    "strict" => 0,
    "vars" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Data::Dumper" => 0,
    "File::Comments" => 0,
    "File::Spec" => 0,
    "File::Temp" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Pod::Spell" => 0,
    "Test::More" => 0,
    "Test::YAML::Meta" => 0,
    "Text::SpellChecker" => 0
  },
  "VERSION" => "2.09",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

%WriteMakefileArgs = (
    %WriteMakefileArgs,
    'LIBS' => ['-lgmp'],,
);

my %FallbackPrereqs = (
  "AutoLoader" => 0,
  "Carp" => 0,
  "Data::Dumper" => 0,
  "Devel::CheckLib" => "0.9",
  "DynaLoader" => 0,
  "Exporter" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Comments" => 0,
  "File::Spec" => 0,
  "File::Temp" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Pod::Spell" => 0,
  "Test::More" => 0,
  "Test::YAML::Meta" => 0,
  "Text::SpellChecker" => 0,
  "overload" => 0,
  "strict" => 0,
  "vars" => 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);