]> mj.ucw.cz Git - libucw.git/blob - free/libs/default.cfg
Mention other libraries in libucw webpage
[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 Set("CONFIG_UCW_UTILS" => 1);
18
19 # Libsh settings
20 Set("CONFIG_BUCKET_SHIFT" => 6);
21
22 # Liblang settings
23 Set("CONFIG_LANG");
24 Set("MAX_WORD_CHARS" => 64);
25 Set("MAX_WORD_BYTES" => 192);
26
27 # Libimages settings
28 Set("CONFIG_IMAGES");
29 Set("CONFIG_IMAGES_LIBJPEG");
30 Set("CONFIG_IMAGES_LIBPNG");
31 Set("CONFIG_IMAGES_LIBUNGIF");
32 UnSet("CONFIG_IMAGES_LIBGIF");
33 UnSet("CONFIG_IMAGES_LIBMAGICK");
34
35 # Return success
36 1;