1 # Configuration variables of the UCW library and their default values
2 # (c) 2005--2008 Martin Mares <mj@ucw.cz>
4 # Version of the whole package
5 Set("SHERLOCK_VERSION" => "3.13-dev");
7 # Compile everything with debug information and ASSERT's
10 # Enable aggressive optimizations depending on exact CPU type (don't use for portable packages)
11 UnSet("CONFIG_EXACT_CPU");
14 Set("CONFIG_LARGE_FILES");
16 # Use shared libraries
17 UnSet("CONFIG_SHARED");
19 # If your system can't reset getopt with 'optind = 0', you need to compile our internal copy
20 # of GNU libc's getopt. This should not be necessary on GNU libc.
21 UnSet("CONFIG_OWN_GETOPT");
23 # Install libraries and their API includes
24 UnSet("CONFIG_INSTALL_API");
26 # Build with support for multi-threaded programs
27 Set("CONFIG_UCW_THREADS" => 1);
29 # Include Perl modules
30 Set("CONFIG_UCW_PERL" => 1);
32 # Include Perl modules written in C
33 UnSet("CONFIG_UCW_PERL_MODULES");
35 # Include support utilities for shell scripts
36 Set("CONFIG_UCW_SHELL_UTILS" => 1);
39 Set("CONFIG_UCW_UTILS" => 1);
41 # Default configuration file
42 UnSet("DEFAULT_CONFIG");
44 # Environment variable with configuration file
45 UnSet("ENV_VAR_CONFIG");