[svn:parrot] r41071 - trunk/config/auto
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Sun Sep 6 16:53:26 UTC 2009
Author: NotFound
Date: Sun Sep 6 16:53:22 2009
New Revision: 41071
URL: https://trac.parrot.org/parrot/changeset/41071
Log:
[config] print yes or no instead of done in several auto probes result
Modified:
trunk/config/auto/crypto.pm
trunk/config/auto/gdbm.pm
trunk/config/auto/gmp.pm
trunk/config/auto/readline.pm
Modified: trunk/config/auto/crypto.pm
==============================================================================
--- trunk/config/auto/crypto.pm Sun Sep 6 15:25:02 2009 (r41070)
+++ trunk/config/auto/crypto.pm Sun Sep 6 16:53:22 2009 (r41071)
@@ -65,6 +65,7 @@
$has_crypto = $self->_evaluate_cc_run($conf, $test, $has_crypto, $verbose);
}
$conf->data->set( has_crypto => $has_crypto ); # for dynpmc.in & digest.t
+ $self->set_result($has_crypto ? 'yes' : 'no');
return 1;
}
Modified: trunk/config/auto/gdbm.pm
==============================================================================
--- trunk/config/auto/gdbm.pm Sun Sep 6 15:25:02 2009 (r41070)
+++ trunk/config/auto/gdbm.pm Sun Sep 6 16:53:22 2009 (r41071)
@@ -70,6 +70,7 @@
$has_gdbm = $self->_evaluate_cc_run($test, $has_gdbm, $verbose);
}
$conf->data->set( has_gdbm => $has_gdbm ); # for gdbmhash.t and dynpmc.in
+ $self->set_result($has_gdbm ? 'yes' : 'no');
return 1;
}
Modified: trunk/config/auto/gmp.pm
==============================================================================
--- trunk/config/auto/gmp.pm Sun Sep 6 15:25:02 2009 (r41070)
+++ trunk/config/auto/gmp.pm Sun Sep 6 16:53:22 2009 (r41071)
@@ -76,6 +76,7 @@
if ($has_gmp) {
$conf->data->add( ' ', libs => $extra_libs );
}
+ $self->set_result($has_gmp ? 'yes' : 'no');
return 1;
}
Modified: trunk/config/auto/readline.pm
==============================================================================
--- trunk/config/auto/readline.pm Sun Sep 6 15:25:02 2009 (r41070)
+++ trunk/config/auto/readline.pm Sun Sep 6 16:53:22 2009 (r41071)
@@ -77,6 +77,7 @@
}
}
$conf->data->set( HAS_READLINE => $has_readline );
+ $self->set_result($has_readline ? 'yes' : 'no');
return 1;
}
More information about the parrot-commits
mailing list