make CMOP::Package a thin wrapper around Package::Stash
[gitmo/Class-MOP.git] / Makefile.PL
CommitLineData
591a9381 1use strict;
2use warnings;
89dc39a9 3use inc::Module::Install;
4use 5.008001;
5
6check_conflicts();
7
8name 'Class-MOP';
9perl_version '5.008001';
10all_from 'lib/Class/MOP.pm';
11license 'perl';
591a9381 12
72bc0a47 13require Config;
14my $ccflags = ( $Config::Config{ccflags} || '' ) . ' -I.';
06e9254b 15
16if ( -d '.git' || $ENV{MAINTAINER_MODE} ) {
17 $ccflags .= ' -Wall -Wdeclaration-after-statement';
18}
f125b31e 19
89dc39a9 20requires 'Carp';
4154c4d0 21requires 'Data::OptList';
89dc39a9 22requires 'Devel::GlobalDestruction';
50de028e 23requires 'List::MoreUtils' => '0.12';
d065fbe6 24requires 'MRO::Compat' => '0.05';
407a4276 25requires 'Package::Stash';
d065fbe6 26requires 'Scalar::Util' => '1.18';
27requires 'Sub::Name' => '0.04';
a8344505 28requires 'Try::Tiny' => '0.02';
89dc39a9 29requires 'Task::Weaken';
30
31test_requires 'File::Spec';
7975280a 32test_requires 'Test::More' => '0.88';
4cd537dd 33test_requires 'Test::Exception' => '0.27';
89dc39a9 34
8c463274 35repository 'git://git.moose.perl.org/Class-MOP.git';
36
3fd3a2ab 37extra_tests();
38
89dc39a9 39makemaker_args( CCFLAGS => $ccflags );
40
d846ade3 41{
42 my (@clean, @OBJECT, %XS);
43
44 for my $xs (<xs/*.xs>) {
45 (my $c = $xs) =~ s/\.xs$/.c/i;
46 (my $o = $xs) =~ s/\.xs$/\$(OBJ_EXT)/i;
47
48 $XS{$xs} = $c;
49 push @OBJECT, $o;
50 push @clean, $o;
51 }
52
53 for my $c (<*.c>) {
54 (my $o = $c) =~ s/\.c$/\$(OBJ_EXT)/i;
55 push @OBJECT, $o;
56 push @clean, $o;
57 }
58
59 makemaker_args(
60 clean => { FILES => join(q{ }, @clean) },
61 OBJECT => join (q{ }, @OBJECT),
62 XS => \%XS,
63 );
64}
65
8a9fe086 66postamble(<<'EOM');
67$(OBJECT) : mop.h
68EOM
69
89dc39a9 70WriteAll();
71
72# Use the cpan-smolder-stable script in the Moose svn root to figure
73# out what on CPAN will break with the latest Moose, then update this
74# before a release.
75sub check_conflicts {
76 my %conflicts = (
a53e76d9 77 'Moose' => '1.04',
89dc39a9 78 );
79
80 my $found = 0;
81 for my $mod ( sort keys %conflicts ) {
82 eval "require $mod";
83 next if $@;
84
85 my $installed = $mod->VERSION();
86 if ( $installed le $conflicts{$mod} ) {
87
88 print <<"EOF";
89
90***
91 This version of Class::MOP conflicts with the version of
92 $mod ($installed) you have installed.
93
94 You will need to upgrade $mod after installing
95 this version of Class::MOP.
96***
97
98EOF
99
100 $found = 1;
101 }
102 }
103
104 return unless $found;
105
106 # More or less copied from Module::Build
d065fbe6 107 return if $ENV{PERL_MM_USE_DEFAULT};
108 return unless -t STDIN && ( -t STDOUT || !( -f STDOUT || -c STDOUT ) );
89dc39a9 109
110 sleep 4;
111}
d846ade3 112
113package MY;
114
115use Config;
116
117sub const_cccmd {
118 my $ret = shift->SUPER::const_cccmd(@_);
119 return q{} unless $ret;
120
121 if ($Config{cc} =~ /^cl\b/i) {
122 warn 'you are using MSVC... my condolences.';
123 $ret .= ' /Fo$@';
124 }
125 else {
126 $ret .= ' -o $@';
127 }
128
129 return $ret;
130}