Author: paultcochrane
Date: Wed Apr 11 14:03:52 2007
New Revision: 18148
Modified:
trunk/config/auto/gcc.pm
trunk/config/gen/makefiles.pm
trunk/config/init/hints/mswin32.pm
Log:
[config] Tidied code with perltidy
Modified: trunk/config/auto/gcc.pm
==============================================================================
--- trunk/config/auto/gcc.pm (original)
+++ trunk/config/auto/gcc.pm Wed Apr 11 14:03:52 2007
@@ -55,7 +55,7 @@
my $minor = $gnuc{__GNUC_MINOR__};
my $intel = $gnuc{__INTEL_COMPILER};
- if (defined $intel || ! defined $major) {
+ if ( defined $intel || !defined $major ) {
print " (no) " if $verbose;
$self->set_result('no');
$conf->data->set( gccversion => undef );
Modified: trunk/config/gen/makefiles.pm
==============================================================================
--- trunk/config/gen/makefiles.pm (original)
+++ trunk/config/gen/makefiles.pm Wed Apr 11 14:03:52 2007
@@ -59,7 +59,7 @@
sub makefiles {
my ( $self, $conf ) = @_;
- genfile( 'config/gen/makefiles/root.in' => 'Makefile' );
+ genfile( 'config/gen/makefiles/root.in' => 'Makefile' );
genfile(
'config/gen/makefiles/ext.in' => 'ext/Makefile',
@@ -69,8 +69,8 @@
);
genfile(
'config/gen/makefiles/parrot_embed.in' =>
'ext/Parrot-Embed/Makefile.PL',
- replace_slashes => 0,
- conditioned_lines => 1
+ replace_slashes => 0,
+ conditioned_lines => 1
);
genfile( 'config/gen/makefiles/past.in' => 'compilers/past/Makefile'
);
Modified: trunk/config/init/hints/mswin32.pm
==============================================================================
--- trunk/config/init/hints/mswin32.pm (original)
+++ trunk/config/init/hints/mswin32.pm Wed Apr 11 14:03:52 2007
@@ -140,12 +140,13 @@
}
elsif ($is_bcc) {
$conf->data->set(
- o => '.obj',
- a => '.lib',
- share_ext => '.dll',
- load_ext => '.dll',
- cc => ${cc},
- ccflags => '-O2 -w-8066 -DWIN32 -DNO_STRICT -DNDEBUG -D_CONSOLE
-w-par -w-aus -w-ccc -w-rch',
+ o => '.obj',
+ a => '.lib',
+ share_ext => '.dll',
+ load_ext => '.dll',
+ cc => ${cc},
+ ccflags =>
+ '-O2 -w-8066 -DWIN32 -DNO_STRICT -DNDEBUG -D_CONSOLE -w-par
-w-aus -w-ccc -w-rch',
cc_o_out => '-o',
cc_exe_out => '-e',
cc_debug => '-v',