[svn:parrot] r38830 - trunk/config/gen
Infinoid at svn.parrot.org
Infinoid at svn.parrot.org
Sat May 16 15:08:33 UTC 2009
Author: Infinoid
Date: Sat May 16 15:08:33 2009
New Revision: 38830
URL: https://trac.parrot.org/parrot/changeset/38830
Log:
[config] Revert r38804.
Apparently, it causes PARROT_HAS_GETTEXT to be falsely defined on OSX, resulting in build errors:
/Users/jimk/work/parrot/include/parrot/parrot.h:239:23: error: libintl.h: No such file or directory
Revert it for now, until a better solution can be found.
masak++ and kid51++ for reporting and bisecting.
Modified:
trunk/config/gen/config_pm.pm
Modified: trunk/config/gen/config_pm.pm
==============================================================================
--- trunk/config/gen/config_pm.pm Sat May 16 14:16:19 2009 (r38829)
+++ trunk/config/gen/config_pm.pm Sat May 16 15:08:33 2009 (r38830)
@@ -97,13 +97,9 @@
END
- my %p5_keys = map { $_ => 1 } $conf->data->keys_p5();
-
while (<$IN>) {
if (/\@PCONFIG\@/) {
for my $k ( sort { lc $a cmp lc $b || $a cmp $b } $conf->data->keys ) {
- next if exists $p5_keys{$k};
-
my $v = $conf->data->get($k);
if ( defined $v ) {
my $type = ref $v;
More information about the parrot-commits
mailing list