Revision history for Perl extension Class-MOP.
+0.81
+ * Makefile.PL
+ - Make sure to preserve any compiler flags already defined in
+ Config.pm. Patch by Vincent Pit. RT #44739.
+
0.80 Wed, April 1, 2009
* Class::MOP::*
- Call user_class->meta in fewer places, with the eventual goal
all_from 'lib/Class/MOP.pm';
license 'perl';
-my $ccflags = ' -I.';
+require Config;
+my $ccflags = ( $Config::Config{ccflags} || '' ) . ' -I.';
$ccflags .= ' -Wall' if -d '.svn' || -d '.git' || $ENV{MAINTAINER_MODE};
requires 'Carp';