]> mj.ucw.cz Git - libucw.git/blob - lib/default.cfg
Added the local copy of the regex library back.
[libucw.git] / lib / default.cfg
1 # Configuration variables of the UCW library and their default values
2 # (c) 2005--2007 Martin Mares <mj@ucw.cz>
3
4 # Version of the whole package
5 Set("SHERLOCK_VERSION" => "3.12.4-dev");
6
7 # Compile everything with debug information and ASSERT's
8 UnSet("CONFIG_DEBUG");
9
10 # Enable aggressive optimizations depending on exact CPU type (don't use for portable packages)
11 UnSet("CONFIG_EXACT_CPU");
12
13 # Support files >2GB
14 Set("CONFIG_LARGE_FILES");
15
16 # Use shared libraries
17 UnSet("CONFIG_SHARED");
18
19 # If your system doesn't contain GNU libc 2.3 or newer, it's recommended to let Sherlock
20 # use its own regex library (a copy of the glibc one), because the default regex library
21 # is likely to be crappy.
22 Set("CONFIG_OWN_REGEX");
23
24 # If your system can't reset getopt with 'optind = 0', you need to compile our internal copy
25 # of GNU libc's getopt. This should not be necessary on GNU libc.
26 UnSet("CONFIG_OWN_GETOPT");
27
28 # Install libraries and their API includes
29 UnSet("CONFIG_INSTALL_API");
30
31 # Build with support for multi-threaded programs
32 Set("CONFIG_UCW_THREADS" => 1);
33
34 # Include Perl modules
35 Set("CONFIG_UCW_PERL" => 1);
36
37 # Include Perl modules written in C
38 UnSet("CONFIG_UCW_PERL_MODULES");
39
40 # Include support utilities for shell scripts
41 Set("CONFIG_UCW_SHELL_UTILS" => 1);
42
43 # Default configuration file
44 UnSet("DEFAULT_CONFIG");
45
46 # Environment variable with configuration file
47 UnSet("ENV_VAR_CONFIG");
48
49 # Return success
50 1;