You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2014/04/12 08:50:02 UTC

[lucy-commits] [27/27] git commit: refs/heads/master - Add Clownfish system include dirs.

Add Clownfish system include dirs.


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

Branch: refs/heads/master
Commit: 6fab33e7ec39c6bd42d93d2b3108c22c80a0cf3d
Parents: 1704c27
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Tue Apr 1 16:04:02 2014 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Sat Apr 12 00:48:30 2014 -0600

----------------------------------------------------------------------
 perl/Build.PL | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/6fab33e7/perl/Build.PL
----------------------------------------------------------------------
diff --git a/perl/Build.PL b/perl/Build.PL
index 4bd3236..2ff802e 100644
--- a/perl/Build.PL
+++ b/perl/Build.PL
@@ -21,6 +21,7 @@ use File::Spec::Functions qw( catdir );
 use Lucy::Build;
 
 my @BASE_PATH        = Lucy::Build->cf_base_path;
+my @CF_SYS_INCLUDES  = Lucy::Build->cf_system_include_dirs;
 my $MODULES_DIR      = catdir( @BASE_PATH, 'modules' );
 my $SNOWSTEM_SRC_DIR = catdir( $MODULES_DIR, qw( analysis snowstem source ) );
 my $SNOWSTEM_INC_DIR = catdir( $SNOWSTEM_SRC_DIR, 'include' );
@@ -69,6 +70,7 @@ my $builder = Lucy::Build->new(
         $UCD_INC_DIR,
         $UTF8PROC_SRC_DIR,
         $CFR_XS_SOURCE_DIR,
+        @CF_SYS_INCLUDES,
     ],
     clownfish_params => {
         source => [
@@ -79,6 +81,7 @@ my $builder = Lucy::Build->new(
             $UTF8PROC_SRC_DIR,
         ],
         include => [
+            @CF_SYS_INCLUDES,
             $CFR_CORE_SOURCE_DIR,
         ],
     },