]> mj.ucw.cz Git - libucw.git/blobdiff - default.cfg
Opt: looks well, going to write some tests
[libucw.git] / default.cfg
index 0fd308d24a40834095aef4993b4e00d5bb7672ea..0b05139eebf657a7ab93695b1b4b7bd14a88520b 100644 (file)
@@ -4,13 +4,19 @@
 # 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");
 
-# Libucw should support files >2GB and threading
-Set("CONFIG_LARGE_FILES");
+# LibUCW should support files >2GB and threading
+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);
@@ -18,7 +24,7 @@ Set("CONFIG_UCW_SHELL_UTILS" => 1);
 Set("CONFIG_UCW_UTILS" => 1);
 
 # Libimages settings
-Set("CONFIG_IMAGES");
+UnSet("CONFIG_IMAGES");
 Set("CONFIG_IMAGES_LIBJPEG");
 Set("CONFIG_IMAGES_LIBPNG");
 Set("CONFIG_IMAGES_LIBUNGIF");
@@ -26,7 +32,11 @@ UnSet("CONFIG_IMAGES_LIBGIF");
 UnSet("CONFIG_IMAGES_LIBMAGICK");
 
 # Libcharset
-Set("CONFIG_CHARSET");
+UnSet("CONFIG_CHARSET");
+Set("CONFIG_CHARSET_UTILS");
+
+# Libshxml
+UnSet("CONFIG_SHXML");
 
 # Return success
 1;