]> mj.ucw.cz Git - libucw.git/blob - default.cfg
90667f3ff402da70d152c9b85524eb5747e97e11
[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 # Include debugging code
8 Set("CONFIG_DEBUG");
9
10 # We want the public API
11 Set("CONFIG_INSTALL_API");
12
13 # Libucw should support files >2GB and threading
14 Set("CONFIG_UCW_LARGE_FILES");
15 Set("CONFIG_UCW_THREADS" => 1);
16
17 # Libucw extensions
18 Set("CONFIG_UCW_PERL" => 1);
19 Set("CONFIG_UCW_PERL_MODULES" => 1);
20 Set("CONFIG_UCW_SHELL_UTILS" => 1);
21 Set("CONFIG_UCW_UTILS" => 1);
22
23 # Libimages settings
24 Set("CONFIG_IMAGES");
25 Set("CONFIG_IMAGES_LIBJPEG");
26 Set("CONFIG_IMAGES_LIBPNG");
27 Set("CONFIG_IMAGES_LIBUNGIF");
28 UnSet("CONFIG_IMAGES_LIBGIF");
29 UnSet("CONFIG_IMAGES_LIBMAGICK");
30
31 # Libcharset
32 Set("CONFIG_CHARSET");
33 Set("CONFIG_CHARSET_UTILS");
34
35 # Libshxml
36 Set("CONFIG_SHXML");
37
38 # Return success
39 1;