You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
2 months ago
|
# Default configuration of UCW libraries
|
||
|
# (see */default.cfg for the description of all options)
|
||
|
|
||
|
# Do we want shared or static libraries?
|
||
|
Set("CONFIG_SHARED");
|
||
|
|
||
|
# Include debugging code
|
||
|
Set("CONFIG_DEBUG");
|
||
|
|
||
|
# We want the public API
|
||
|
Set("CONFIG_INSTALL_API");
|
||
|
|
||
|
# Enable GCC link-time optimizations (experimental)
|
||
|
UnSet("CONFIG_LTO");
|
||
|
|
||
|
# LibUCW should support files >2GB and threading
|
||
|
Set("CONFIG_UCW_LARGE_FILES");
|
||
|
Set("CONFIG_UCW_THREADS" => 1);
|
||
|
|
||
|
# Libucw extensions
|
||
|
Set("CONFIG_UCW_PERL" => 1);
|
||
|
Set("CONFIG_UCW_PERL_MODULES" => 1);
|
||
|
Set("CONFIG_UCW_SHELL_UTILS" => 1);
|
||
|
Set("CONFIG_UCW_UTILS" => 1);
|
||
|
|
||
|
# Libucw-images settings
|
||
|
UnSet("CONFIG_IMAGES");
|
||
|
Set("CONFIG_IMAGES_LIBJPEG");
|
||
|
Set("CONFIG_IMAGES_LIBPNG");
|
||
|
UnSet("CONFIG_IMAGES_LIBUNGIF");
|
||
|
Set("CONFIG_IMAGES_LIBGIF");
|
||
|
UnSet("CONFIG_IMAGES_LIBMAGICK");
|
||
|
|
||
|
# Libucw-charset
|
||
|
Set("CONFIG_CHARSET");
|
||
|
Set("CONFIG_CHARSET_UTILS");
|
||
|
|
||
|
# Libucw-xml
|
||
|
Set("CONFIG_XML");
|
||
|
|
||
|
# Libucw-json
|
||
|
Set("CONFIG_JSON");
|
||
|
|
||
|
# Compress .deb packages with gzip (instead of the default algorithm)
|
||
|
# Hack for Economia's deployment machinery
|
||
|
UnSet("CONFIG_BUILDDEB_GZIP");
|
||
|
|
||
|
# Return success
|
||
|
1;
|