|
a/src/configure |
|
b/src/configure |
|
... |
|
... |
715 |
with_inotify
|
715 |
with_inotify
|
716 |
with_fam
|
716 |
with_fam
|
717 |
enable_xattr
|
717 |
enable_xattr
|
718 |
enable_idxthreads
|
718 |
enable_idxthreads
|
719 |
enable_camelcase
|
719 |
enable_camelcase
|
720 |
enable_stripchars
|
|
|
721 |
enable_python_module
|
720 |
enable_python_module
|
722 |
enable_pic
|
721 |
enable_pic
|
723 |
enable_qtgui
|
722 |
enable_qtgui
|
724 |
enable_webkit
|
723 |
enable_webkit
|
725 |
with_qzeitgeist
|
724 |
with_qzeitgeist
|
|
... |
|
... |
1365 |
difficult: you need to use matching case in the
|
1364 |
difficult: you need to use matching case in the
|
1366 |
phrase query to get a match. Ie querying for "MySQL
|
1365 |
phrase query to get a match. Ie querying for "MySQL
|
1367 |
manual" and "my sql manual" are the same, but not
|
1366 |
manual" and "my sql manual" are the same, but not
|
1368 |
the same as "mysql manual" (in phrases only and you
|
1367 |
the same as "mysql manual" (in phrases only and you
|
1369 |
could raise the phrase slack to get a match).
|
1368 |
could raise the phrase slack to get a match).
|
1370 |
--enable-stripchars Remove diacritics and fold character case in indexed
|
|
|
1371 |
terms. This will yield less precise searches but the
|
|
|
1372 |
index will be smaller
|
|
|
1373 |
--disable-python-module Do not build the Python module.
|
1369 |
--disable-python-module Do not build the Python module.
|
1374 |
--disable-pic Do not compile library objects as position
|
1370 |
--disable-pic Do not compile library objects as position
|
1375 |
independant code. This is incompatible with the php
|
1371 |
independant code. This is incompatible with the php
|
1376 |
or python extensions.
|
1372 |
or python extensions.
|
1377 |
--disable-qtgui Disable the QT-based graphical user interface.
|
1373 |
--disable-qtgui Disable the QT-based graphical user interface.
|
|
... |
|
... |
4394 |
|
4390 |
|
4395 |
$as_echo "#define RCL_SPLIT_CAMELCASE 1" >>confdefs.h
|
4391 |
$as_echo "#define RCL_SPLIT_CAMELCASE 1" >>confdefs.h
|
4396 |
|
4392 |
|
4397 |
fi
|
4393 |
fi
|
4398 |
|
4394 |
|
4399 |
# Not by default as these are little used for now.
|
|
|
4400 |
# Check whether --enable-stripchars was given.
|
|
|
4401 |
if test "${enable_stripchars+set}" = set; then :
|
|
|
4402 |
enableval=$enable_stripchars; stripcharsEnabled=$enableval
|
|
|
4403 |
else
|
|
|
4404 |
stripcharsEnabled=no
|
|
|
4405 |
fi
|
|
|
4406 |
|
|
|
4407 |
|
|
|
4408 |
if test X$stripcharsEnabled = Xyes ; then
|
|
|
4409 |
|
|
|
4410 |
$as_echo "#define RCL_INDEX_STRIPCHARS 1" >>confdefs.h
|
|
|
4411 |
|
|
|
4412 |
fi
|
|
|
4413 |
|
|
|
4414 |
# Disable building the python module. This is built by default, because
|
4395 |
# Disable building the python module. This is built by default, because
|
4415 |
# it's really the easiest way to interface and extend recoll. It forces PIC
|
4396 |
# it's really the easiest way to interface and extend recoll. It forces PIC
|
4416 |
# objects for everything (indexing performance impact: 1%), because it's
|
4397 |
# objects for everything (indexing performance impact: 1%), because it's
|
4417 |
# just not worth building the lib twice
|
4398 |
# just not worth building the lib twice
|
4418 |
# You can still have a non-pic recoll with:
|
4399 |
# You can still have a non-pic recoll with:
|