]> mj.ucw.cz Git - libucw.git/blobdiff - build/sherlock.cfg
Merge with git+ssh://cvs.ucw.cz/projects/sherlock/GIT/sherlock.git#v3.8
[libucw.git] / build / sherlock.cfg
index e09e8d9255d40d554d957b3c6459d1ae4424b7c3..eb32472d9590b58222f21d385cb791e5ac643de3 100644 (file)
@@ -1,15 +1,18 @@
 # Configuration variables of Sherlock and their default values
-# (c) 2005 Martin Mares <mj@ucw.cz>
+# (c) 2005--2006 Martin Mares <mj@ucw.cz>
 
 # Version of the whole package
-Set("SHERLOCK_VERSION" => "3.5");
+Set("SHERLOCK_VERSION" => "3.9");
 
 # Installation directory for `make install'
-Set("INSTALL_DIR" => "~/run-3.5");
+Set("INSTALL_DIR" => "~/run-3.9");
 
 # Compile everything with debug information and ASSERT's
 UnSet("CONFIG_DEBUG");
 
+# Enable aggressive optimizations depending on exact CPU type (don't use for portable packages)
+UnSet("CONFIG_EXACT_CPU");
+
 ### Standard modules available in all releases of Sherlock ###
 
 # Gatherer (the gatherer library and some utilities) [FIXME: decide automatically?]
@@ -46,6 +49,12 @@ UnSet("CONFIG_MUX");
 
 ### Optional Modules & Features ###
 
+# Support databases >4GB
+Set("CONFIG_LARGE_DB");
+
+# Bucket position alignment shift (maximum bucket file size is 4G << this shift)
+Set("CONFIG_BUCKET_SHIFT" => 7);
+
 # Number of sections we remember limits for
 Set("SHERLOCK_NUM_SECTIONS" => 4);
 
@@ -88,6 +97,9 @@ Set("CONFIG_OWN_REGEX");
 # Include custom builtin functions in filtering language
 UnSet("CONFIG_CUSTOM_FILTER");
 
+# Include the incremental indexer
+UnSet("CONFIG_INCREMENTAL");
+
 # Install libraries and their API includes
 UnSet("CONFIG_INSTALL_API");
 
@@ -112,9 +124,12 @@ UnSet("CONFIG_EXCEL");
 
 # Extra stuff for Centrum
 UnSet("CONFIG_CENTRUM");
+UnSet("CONFIG_CENTRUM_CZ");
+UnSet("CONFIG_CENTRUM_SK");
+UnSet("CONFIG_CENTRUM_PL");
 
-# Configuration for Morfeo (raises limits, activates filters etc.)
-UnSet("CONFIG_MORFEO");
+# Debugging version of Centrum installation (lower limits, trivial filters etc.)
+UnSet("CONFIG_CENTRUM_DEBUG");
 
 # Stemmer by UFAL and its dictionaries
 UnSet("CONFIG_UFAL_STEMMER");
@@ -127,6 +142,11 @@ UnSet("CONFIG_PL_STEMMER");
 # Dynamic weights
 UnSet("CONFIG_WEIGHTS");
 
+# Maximum number of search servers, databases per search server and route keys
+Set("MUX_MAX_SERVERS" => 128);
+Set("MUX_MAX_DATABASES_PER_SERVER" => 4);
+Set("MUX_MAX_ROUTE_KEYS" => 4);
+
 #endif
 
 ### These are internal settings which shouldn't be modified by custom configs ###
@@ -136,7 +156,7 @@ Set("DEFAULT_CONFIG" => "cf/sherlock");
 
 # Configuration of parts of the UCW library
 Set("CONFIG_UCW_PERL" => 1);
-Set("CONFIG_SHELL_UTILS" => 1);
+Set("CONFIG_UCW_SHELL_UTILS" => 1);
 
 # Configuration of the language library
 Set("CONFIG_LANG_DETECT" => 1);