Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Babelfish full text files (#186) #221

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/backend/snowball/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ install: all installdirs install-lib
while [ "$$#" -gt 0 ] ; \
do \
lang=$$1; shift; shift; \
$(INSTALL_DATA) $(srcdir)/stopwords/tsql_contains.stop '$(DESTDIR)$(datadir)/$(DICTDIR)' ; \
if [ -s $(srcdir)/stopwords/$${lang}.stop ] ; then \
$(INSTALL_DATA) $(srcdir)/stopwords/$${lang}.stop '$(DESTDIR)$(datadir)/$(DICTDIR)' ; \
fi \
Expand All @@ -165,6 +166,7 @@ uninstall: uninstall-lib
while [ "$$#" -gt 0 ] ; \
do \
lang=$$1; shift; shift; \
rm -f '$(DESTDIR)$(datadir)/$(DICTDIR)/'tsql_contains.stop ; \
if [ -s $(srcdir)/stopwords/$${lang}.stop ] ; then \
rm -f '$(DESTDIR)$(datadir)/$(DICTDIR)/'$${lang}.stop ; \
fi \
Expand Down
154 changes: 154 additions & 0 deletions src/backend/snowball/stopwords/tsql_contains.stop
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
$
0
1
2
3
4
5
6
7
8
9
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
about
after
all
also
an
and
another
any
are
as
at
be
because
been
before
being
between
both
but
by
came
can
come
could
did
do
does
each
else
for
from
get
got
had
has
have
he
her
here
him
himself
his
how
if
in
into
is
it
its
just
like
make
many
me
might
more
most
much
must
my
never
no
now
of
on
only
or
other
our
out
over
re
said
same
see
should
since
so
some
still
such
take
than
that
the
their
them
then
there
these
they
this
those
through
to
too
under
up
use
very
want
was
way
we
well
were
what
when
where
which
while
who
will
with
would
you
your
3 changes: 2 additions & 1 deletion src/backend/tsearch/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ DICTFILES=synonym_sample.syn thesaurus_sample.ths \
hunspell_sample.affix \
ispell_sample.affix ispell_sample.dict \
hunspell_sample_long.affix hunspell_sample_long.dict \
hunspell_sample_num.affix hunspell_sample_num.dict
hunspell_sample_num.affix hunspell_sample_num.dict \
irregular_verbs.syn

# Local paths to dictionaries files
DICTFILES_PATH=$(addprefix dicts/,$(DICTFILES))
Expand Down
Loading
Loading