diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2015-12-22 15:37:33 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2015-12-22 15:37:33 +0000 |
commit | ecaba1413e58eefa9d3085dce1b478f5d04f206d (patch) | |
tree | 3cbb3112990b885d15839e2af6401b511889dd82 /textproc/p5-Lingua-Identify-CLD/files/patch-inc_MyBuilder.pm | |
parent | The Python Dugong module provides an API for communicating with HTTP 1.1 (diff) |
These are Perl bindings to CLD, the Compact Language Detection library
from Google/Chrome.
WWW: http://search.cpan.org/dist/Lingua-Identify-CLD/
PR: 196428
Submitted by: Gasol Wu <gasol.wu@gmail.com>
Approved by: mat (mentor)
Differential Revision: D4638
Notes
Notes:
svn path=/head/; revision=404244
Diffstat (limited to 'textproc/p5-Lingua-Identify-CLD/files/patch-inc_MyBuilder.pm')
-rw-r--r-- | textproc/p5-Lingua-Identify-CLD/files/patch-inc_MyBuilder.pm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/textproc/p5-Lingua-Identify-CLD/files/patch-inc_MyBuilder.pm b/textproc/p5-Lingua-Identify-CLD/files/patch-inc_MyBuilder.pm new file mode 100644 index 000000000000..edf02e759522 --- /dev/null +++ b/textproc/p5-Lingua-Identify-CLD/files/patch-inc_MyBuilder.pm @@ -0,0 +1,34 @@ +--- inc/MyBuilder.pm.orig 2014-09-07 20:44:12 UTC ++++ inc/MyBuilder.pm +@@ -46,7 +46,6 @@ sub ACTION_code { + $self->notes(CFLAGS => '-fPIC -I. -O2 -DCLD_WINDOWS'); # XXX fixme for windows + $self->notes(LDFLAGS => '-L.'); + +- $self->dispatch("create_objects"); + $self->dispatch("compile_xscode"); + + $self->SUPER::ACTION_code; +@@ -80,7 +79,7 @@ sub ACTION_compile_xscode { + + if (!$self->up_to_date($cfile, $ofile)) { + $cbuilder->compile( source => $cfile, +- include_dirs => [ catdir("cld-src") ], ++ include_dirs => [ catdir("/usr/local/include/cld") ], + 'C++' => 1, + extra_compiler_flags => $extra_compiler_flags, + object_file => $ofile); +@@ -97,12 +96,11 @@ sub ACTION_compile_xscode { + utime( (time) x 2, $bs_file ); # touch + } + +- my $extra_linker_flags = "-lstdc++"; ++ my $extra_linker_flags = "-lcld -lstdc++"; + $extra_linker_flags .= " -lgcc_s" if $^O eq 'netbsd'; + + my $objects = [ +- $ofile, +- @{ $self->rscan_dir('cld-src', qr/\.o$/) }, ++ $ofile + ]; + + # .o => .(a|bundle) |