Skip to content

Commit

Permalink
Added tools/cgi/text-extractor.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
susumu.yata committed Oct 11, 2010
1 parent dbdf6f3 commit 6816747
Show file tree
Hide file tree
Showing 4 changed files with 442 additions and 5 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -5011,7 +5011,7 @@ if test "x$ac_cv_header_bzlib_h" = x""yes; then :
else
as_fn_error "\
The NWC Toolkit requires zlib.
The NWC Toolkit requires libbz2.
Project URL: http://www.bzip.org/" "$LINENO" 5
fi
Expand Down Expand Up @@ -5239,7 +5239,7 @@ _ACEOF
else
as_fn_error "\
The NWC Toolkit requires zlib.
The NWC Toolkit requires libbz2.
Project URL: http://www.bzip.org/" "$LINENO" 5
fi
Expand Down
6 changes: 5 additions & 1 deletion tools/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ AM_LDFLAGS = `icu-config --ldflags`
bin_SCRIPTS = \
nwc-toolkit-config

noinst_SCRIPTS = \
cgi/text-extractor.py

bin_PROGRAMS = \
nwc-toolkit-text-extractor \
nwc-toolkit-text-filter \
Expand All @@ -19,4 +22,5 @@ nwc_toolkit_unicode_normalizer_SOURCES = nwc-toolkit-unicode-normalizer.cc
nwc_toolkit_unicode_normalizer_LDADD = ../lib/libnwc-toolkit.a

EXTRA_DIST = \
nwc-toolkit-config
$(bin_SCRIPTS) \
$(noinst_SCRIPTS)
8 changes: 6 additions & 2 deletions tools/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ am__nobase_list = $(am__nobase_strip_setup); \
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
SCRIPTS = $(bin_SCRIPTS)
SCRIPTS = $(bin_SCRIPTS) $(noinst_SCRIPTS)
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
Expand Down Expand Up @@ -198,14 +198,18 @@ AM_LDFLAGS = `icu-config --ldflags`
bin_SCRIPTS = \
nwc-toolkit-config

noinst_SCRIPTS = \
cgi/text-extractor.py

nwc_toolkit_text_extractor_SOURCES = nwc-toolkit-text-extractor.cc
nwc_toolkit_text_extractor_LDADD = ../lib/libnwc-toolkit.a
nwc_toolkit_text_filter_SOURCES = nwc-toolkit-text-filter.cc
nwc_toolkit_text_filter_LDADD = ../lib/libnwc-toolkit.a
nwc_toolkit_unicode_normalizer_SOURCES = nwc-toolkit-unicode-normalizer.cc
nwc_toolkit_unicode_normalizer_LDADD = ../lib/libnwc-toolkit.a
EXTRA_DIST = \
nwc-toolkit-config
$(bin_SCRIPTS) \
$(noinst_SCRIPTS)

all: all-am

Expand Down
Loading

0 comments on commit 6816747

Please sign in to comment.