]> mj.ucw.cz Git - libucw.git/blob - free/libs/default.cfg
Merge with git+ssh://cvs.ucw.cz/projects/sherlock/GIT/sherlock.git
[libucw.git] / free / libs / default.cfg
1 # Default configuration of Sherlock libraries (see sherlock/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
18 # Libsh settings
19 Set("CONFIG_BUCKET_SHIFT" => 6);
20
21 # Liblang settings
22 Set("CONFIG_LANG");
23 Set("MAX_WORD_LEN" => 64);
24
25 # Libimages settings
26 Set("CONFIG_IMAGES");
27 Set("CONFIG_IMAGES_LIBJPEG");
28 Set("CONFIG_IMAGES_LIBPNG");
29 Set("CONFIG_IMAGES_LIBUNGIF");
30 UnSet("CONFIG_IMAGES_LIBGIF");
31 UnSet("CONFIG_IMAGES_LIBMAGICK");
32
33 # Return success
34 1;