]> mj.ucw.cz Git - libucw.git/blob - ucw/default.cfg
58f7e594c0f79ca8f77b3be24c95039ad7ef63b1
[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.99.1");
6 Set("SHERLOCK_VERSION_CODE" => 3099001);
7 Set("UCW_VERSION" => Get("SHERLOCK_VERSION"));
8 Set("UCW_VERSION_CODE" => Get("SHERLOCK_VERSION_CODE"));
9
10 # Compile everything with debug information and ASSERT's
11 UnSet("CONFIG_DEBUG");
12
13 # Enable aggressive optimizations depending on exact CPU type (don't use for portable packages)
14 UnSet("CONFIG_EXACT_CPU");
15
16 # Support files >2GB
17 Set("CONFIG_LARGE_FILES");
18
19 # Use shared libraries
20 UnSet("CONFIG_SHARED");
21
22 # If your system doesn't contain GNU libc 2.3 or newer, it's recommended to let Sherlock
23 # use its own regex library (a copy of the glibc one), because the default regex library
24 # is likely to be crappy.
25 Set("CONFIG_OWN_REGEX");
26
27 # If your system can't reset getopt with 'optind = 0', you need to compile our internal copy
28 # of GNU libc's getopt. This should not be necessary on GNU libc.
29 UnSet("CONFIG_OWN_GETOPT");
30
31 # Install libraries and their API includes
32 UnSet("CONFIG_INSTALL_API");
33
34 # Build with support for multi-threaded programs
35 Set("CONFIG_UCW_THREADS" => 1);
36
37 # Include Perl modules
38 Set("CONFIG_UCW_PERL" => 1);
39
40 # Include Perl modules written in C
41 UnSet("CONFIG_UCW_PERL_MODULES");
42
43 # Include support utilities for shell scripts
44 Set("CONFIG_UCW_SHELL_UTILS" => 1);
45
46 # Include utilities
47 Set("CONFIG_UCW_UTILS" => 1);
48
49 # Default configuration file
50 UnSet("DEFAULT_CONFIG");
51
52 # Environment variable with configuration file
53 UnSet("ENV_VAR_CONFIG");
54
55 # Use obsolete URL escaping rules (if you need behavior identical to the older versions of libucw)
56 UnSet("CONFIG_URL_ESCAPE_COMPAT");
57
58 # Return success
59 1;