]> mj.ucw.cz Git - libucw.git/blob - free/libucw/default.cfg
Updated years in all README's.
[libucw.git] / free / libucw / default.cfg
1 # Default configuration of LibUCW (see ucw/default.cfg for an explanation)
2
3 # Do we want shared or static libraries?
4 Set("CONFIG_SHARED");
5
6 # We want the public API
7 Set("CONFIG_INSTALL_API");
8
9 # Libucw should support files >2GB and threading
10 Set("CONFIG_LARGE_FILES");
11 Set("CONFIG_UCW_THREADS" => 1);
12
13 # Libucw extensions
14 Set("CONFIG_UCW_PERL" => 1);
15 Set("CONFIG_UCW_PERL_MODULES" => 1);
16 Set("CONFIG_UCW_SHELL_UTILS" => 1);
17 Set("CONFIG_UCW_UTILS" => 1);
18
19 # Return success
20 1;