Catching SEGVs with __try/__except is MSVC only, not general C++
[p5sagit/Devel-Size.git] / Makefile.PL
index 2f441a6..633ab1c 100644 (file)
@@ -1,11 +1,6 @@
 use ExtUtils::MakeMaker;
-use Config;
 
-my %options = (       
+WriteMakefile(
   NAME => 'Devel::Size',
-  LIBS => $Config{cc} eq 'gcc' || $Config{cc} eq 'cc' ? ['-lstdc++'] : '',
   VERSION_FROM => 'lib/Devel/Size.pm',
-  CC => $Config{cc} eq 'cl' ? 'cl' : 'g++',
 );
-
-WriteMakefile(%options);