]> mj.ucw.cz Git - libucw.git/blob - ucw/default.cfg
Libucw: remove dmalloc support
[libucw.git] / ucw / default.cfg
1 # Configuration variables of the UCW library and their default values
2 # (c) 2005--2008 Martin Mares <mj@ucw.cz>
3
4 # Version of the whole package
5 Set("SHERLOCK_VERSION" => "3.13-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 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");
22
23 # Install libraries and their API includes
24 UnSet("CONFIG_INSTALL_API");
25
26 # Build with support for multi-threaded programs
27 Set("CONFIG_UCW_THREADS" => 1);
28
29 # Include Perl modules
30 Set("CONFIG_UCW_PERL" => 1);
31
32 # Include Perl modules written in C
33 UnSet("CONFIG_UCW_PERL_MODULES");
34
35 # Include support utilities for shell scripts
36 Set("CONFIG_UCW_SHELL_UTILS" => 1);
37
38 # Default configuration file
39 UnSet("DEFAULT_CONFIG");
40
41 # Environment variable with configuration file
42 UnSet("ENV_VAR_CONFIG");
43
44 # Return success
45 1;