]> mj.ucw.cz Git - libucw.git/blob - default.cfg
Doc: Typos in the index
[libucw.git] / default.cfg
1 # Default configuration of UCW libraries
2 # (see */default.cfg for the description of all options)
3
4 # Do we want shared or static libraries?
5 Set("CONFIG_SHARED");
6
7 # We want the public API
8 Set("CONFIG_INSTALL_API");
9
10 # Libucw should support files >2GB and threading
11 Set("CONFIG_LARGE_FILES");
12 Set("CONFIG_UCW_THREADS" => 1);
13
14 # Libucw extensions
15 Set("CONFIG_UCW_PERL" => 1);
16 Set("CONFIG_UCW_PERL_MODULES" => 1);
17 Set("CONFIG_UCW_SHELL_UTILS" => 1);
18 Set("CONFIG_UCW_UTILS" => 1);
19
20 # Libimages settings
21 Set("CONFIG_IMAGES");
22 Set("CONFIG_IMAGES_LIBJPEG");
23 Set("CONFIG_IMAGES_LIBPNG");
24 Set("CONFIG_IMAGES_LIBUNGIF");
25 UnSet("CONFIG_IMAGES_LIBGIF");
26 UnSet("CONFIG_IMAGES_LIBMAGICK");
27
28 # Libcharset
29 Set("CONFIG_CHARSET");
30
31 # Libshxml
32 Set("CONFIG_SHXML");
33
34 # Return success
35 1;