Alien-Kiwisolver

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

  - No change from v0.002_003.

0.002_003 2021-05-30 13:09:53-0400

  Bug fixes

   - Use C++ standard flag from ExtUtils::CppGuess to determine if C++
     compiler has support for C++11.

     See <https://github.com/Intertangle/p5-Alien-Kiwisolver/pull/9>,
     <https://github.com/tsee/extutils-cppguess/pull/24>.

0.002_002 2021-05-05 19:58:56-0400

  Bug fixes

   - C++ headers: Avoid Perl's "seed" macro that breaks <algorithm> by
     including <algorithm> first.

0.002_001 2021-05-02 11:41:12-0400

alienfile  view on Meta::CPAN

use alienfile;

use strict;
use warnings;

use ExtUtils::CppGuess;

my $guess = ExtUtils::CppGuess->new;
my $cppstdflag = $guess->cpp_standard_flag('C++11');

die "Need to have full C++11 support, compiler @{[ (split ' ', $guess->compiler_command)[0] ]} only supports $cppstdflag"
	if ( $guess->is_gcc || $guess->is_clang ) && $cppstdflag =~ /\Qc++0x\E/;

share {
	requires 'Net::SSLeay' => 0;
	requires 'IO::Socket::SSL' => 0;
	requires 'File::Copy::Recursive' => 0;
	requires 'Path::Tiny' => 0;

	plugin Download => (
		url => 'https://github.com/nucleic/kiwi/archive/main.zip',
	);



( run in 0.222 second using v1.01-cache-2.11-cpan-702932259ff )