[svn:parrot] r42899 - trunk/config/auto
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sat Dec 5 02:45:29 UTC 2009
Author: jkeenan
Date: Sat Dec 5 02:45:27 2009
New Revision: 42899
URL: https://trac.parrot.org/parrot/changeset/42899
Log:
Delete commented-out code.
Modified:
trunk/config/auto/headers.pm
Modified: trunk/config/auto/headers.pm
==============================================================================
--- trunk/config/auto/headers.pm Sat Dec 5 01:42:30 2009 (r42898)
+++ trunk/config/auto/headers.pm Sat Dec 5 02:45:27 2009 (r42899)
@@ -73,15 +73,11 @@
sub _set_from_Config {
my $conf = shift;
- # perl5's Configure system doesn't call this by its full name, which may
+ # Perl 5's Configure system doesn't call this by its full name, which may
# confuse use later, particularly once we break free and start doing all
# probing ourselves
my %mapping = ( i_niin => "i_netinetin" );
-# for ( grep { /^i_/ } $conf->data->keys_p5() ) {
-# $conf->data->set( $mapping{$_} || $_ =>
-# $conf->data->get( $_ . q{_provisional} ) );
-# }
for ( grep { /^i_/ } $conf->data->keys_p5() ) {
$conf->data->set( $mapping{$_} || $_ => $conf->data->get_p5($_) );
}
@@ -89,7 +85,7 @@
sub _list_extra_headers {
my $conf = shift;
- # some headers may not be probed-for by perl 5, or might not be
+ # some headers may not be probed-for by Perl 5, or might not be
# properly reflected in %Config (i_fcntl seems to be wrong on my machine,
# for instance).
#
@@ -110,10 +106,10 @@
}
if ( $conf->data->get('OSNAME_provisional') eq "MSWin32" ) {
- # Microsoft provides two annotations mechanisms. __declspec, which has been
- # around for a while, and Microsoft's standard source code annotation
- # language (SAL), introduced with Visual C++ 8.0.
- # See <http://msdn2.microsoft.com/en-us/library/ms235402(VS.80).aspx>,
+ # Microsoft provides two annotations mechanisms. __declspec, which
+ # has been around for a while, and Microsoft's standard source code
+ # annotation language (SAL), introduced with Visual C++ 8.0. See
+ # <http://msdn2.microsoft.com/en-us/library/ms235402(VS.80).aspx>,
# <http://msdn2.microsoft.com/en-us/library/dabb5z75(VS.80).aspx>.
push @extra_headers, qw(sal.h);
}
More information about the parrot-commits
mailing list