CONFIG_UCW_ONLY is gone, it did not work anyway.
CONFIG_XML is turned on by default.
Set("CONFIG_UCW_LARGE_FILES");
Set("CONFIG_UCW_THREADS" => 1);
-# Build only LibUCW itself
-Set("CONFIG_UCW_ONLY");
-
# Libucw extensions
Set("CONFIG_UCW_PERL" => 1);
Set("CONFIG_UCW_PERL_MODULES" => 1);
Set("CONFIG_CHARSET_UTILS");
# Libucw-xml
-UnSet("CONFIG_XML");
+Set("CONFIG_XML");
# Return success
1;
Examples
--------
- `./configure -CONFIG_SHARED` will build the libraries statically.
- - `./configure -CONFIG_IMAGES` avoids building the image library.
- - `./configure CONFIG_UCW_ONLY -CONFIG_UCW_UTILS` compiles only the
- libucw library without its util programs.
- - `./configure CONFIG_XML PREFIX=$HOME/libucw` includes a xml
+ - `./configure -CONFIG_XML` avoids building the XML library.
+ - `./configure -CONFIG_UCW_UTILS` compiles only the libraries
+ without its utility programs.
+ - `./configure CONFIG_IMAGES PREFIX=$HOME/libucw` includes an image
library and installs into your home directory.