]> mj.ucw.cz Git - libucw.git/blob - ucw/default.cfg
Set CONFIG_URL_ESCAPE_COMPAT flag
[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 Set("SHERLOCK_VERSION_CODE" => 3013000);
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 can't reset getopt with 'optind = 0', you need to compile our internal copy
23 # of GNU libc's getopt. This should not be necessary on GNU libc.
24 UnSet("CONFIG_OWN_GETOPT");
25
26 # Install libraries and their API includes
27 UnSet("CONFIG_INSTALL_API");
28
29 # Build with support for multi-threaded programs
30 Set("CONFIG_UCW_THREADS" => 1);
31
32 # Include Perl modules
33 Set("CONFIG_UCW_PERL" => 1);
34
35 # Include Perl modules written in C
36 UnSet("CONFIG_UCW_PERL_MODULES");
37
38 # Include support utilities for shell scripts
39 Set("CONFIG_UCW_SHELL_UTILS" => 1);
40
41 # Include utilities
42 Set("CONFIG_UCW_UTILS" => 1);
43
44 # Default configuration file
45 UnSet("DEFAULT_CONFIG");
46
47 # Environment variable with configuration file
48 UnSet("ENV_VAR_CONFIG");
49
50 # Use RFC 2396 URL escaping by default
51 UnSet("CONFIG_URL_ESCAPE_COMPAT");
52
53 # Return success
54 1;