3 use inc::Module::Install;
9 perl_version '5.008001';
10 all_from 'lib/Class/MOP.pm';
14 my $ccflags = ( $Config::Config{ccflags} || '' ) . ' -I.';
15 $ccflags .= ' -Wall' if -d '.svn' || -d '.git' || $ENV{MAINTAINER_MODE};
18 requires 'Devel::GlobalDestruction';
19 requires 'MRO::Compat' => '0.05';
20 requires 'Scalar::Util' => '1.18';
21 requires 'Sub::Name' => '0.04';
22 requires 'Task::Weaken';
24 test_requires 'File::Spec';
25 test_requires 'Test::More' => '0.77';
26 test_requires 'Test::Exception' => '0.27';
30 makemaker_args( CCFLAGS => $ccflags );
33 my (@clean, @OBJECT, %XS);
35 for my $xs (<xs/*.xs>) {
36 (my $c = $xs) =~ s/\.xs$/.c/i;
37 (my $o = $xs) =~ s/\.xs$/\$(OBJ_EXT)/i;
45 (my $o = $c) =~ s/\.c$/\$(OBJ_EXT)/i;
51 clean => { FILES => join(q{ }, @clean) },
52 OBJECT => join (q{ }, @OBJECT),
63 # Use the cpan-smolder-stable script in the Moose svn root to figure
64 # out what on CPAN will break with the latest Moose, then update this
72 for my $mod ( sort keys %conflicts ) {
76 my $installed = $mod->VERSION();
77 if ( $installed le $conflicts{$mod} ) {
82 This version of Class::MOP conflicts with the version of
83 $mod ($installed) you have installed.
85 You will need to upgrade $mod after installing
86 this version of Class::MOP.
97 # More or less copied from Module::Build
98 return if $ENV{PERL_MM_USE_DEFAULT};
99 return unless -t STDIN && ( -t STDOUT || !( -f STDOUT || -c STDOUT ) );
109 my $ret = shift->SUPER::const_cccmd(@_);
110 return q{} unless $ret;
112 if ($Config{cc} =~ /^cl\b/i) {
113 warn 'you are using MSVC... my condolences.';