You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2012/12/27 19:20:55 UTC

[lucy-commits] [10/12] git commit: refs/heads/cfc-sprintf - Add DirManip and Headers probes to CFC

Add DirManip and Headers probes to CFC


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/00e36aa0
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/00e36aa0
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/00e36aa0

Branch: refs/heads/cfc-sprintf
Commit: 00e36aa0cb7b132523ae6437ba341d42ad4ab356
Parents: 8ebe93e
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Dec 27 00:05:18 2012 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Dec 27 00:06:03 2012 +0100

----------------------------------------------------------------------
 clownfish/compiler/common/charmonizer.main |    2 ++
 devel/bin/regen_charmonizer.pl             |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/00e36aa0/clownfish/compiler/common/charmonizer.main
----------------------------------------------------------------------
diff --git a/clownfish/compiler/common/charmonizer.main b/clownfish/compiler/common/charmonizer.main
index 8590d1d..1f3b0d5 100644
--- a/clownfish/compiler/common/charmonizer.main
+++ b/clownfish/compiler/common/charmonizer.main
@@ -84,6 +84,8 @@ int main(int argc, char **argv) {
     chaz_ConfWriterC_enable();
 
     /* Run probe modules. */
+    chaz_DirManip_run();
+    chaz_Headers_run();
     chaz_Integers_run();
     chaz_Strings_run();
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/00e36aa0/devel/bin/regen_charmonizer.pl
----------------------------------------------------------------------
diff --git a/devel/bin/regen_charmonizer.pl b/devel/bin/regen_charmonizer.pl
index 8629034..9e76ec7 100755
--- a/devel/bin/regen_charmonizer.pl
+++ b/devel/bin/regen_charmonizer.pl
@@ -29,7 +29,7 @@ my $MELD_EXE = catfile( $CHAZ_DIR, 'buildbin', 'meld.pl' );
 
 # Clownfish compiler.
 {
-    my $probes = "Integers,Strings";
+    my $probes = "DirManip,Headers,Integers,Strings";
     my $main   = catfile(qw( clownfish compiler common charmonizer.main ));
     my $out    = $main;
     $out =~ s/\.main/.c/ or die "no match";