]> mj.ucw.cz Git - libucw.git/commitdiff
Configure: Changed default.cfg
authorMartin Mares <mj@ucw.cz>
Fri, 13 Feb 2015 15:15:36 +0000 (16:15 +0100)
committerMartin Mares <mj@ucw.cz>
Fri, 13 Feb 2015 15:15:36 +0000 (16:15 +0100)
CONFIG_UCW_ONLY is gone, it did not work anyway.

CONFIG_XML is turned on by default.

default.cfg
ucw/doc/configure.txt

index 4788b156e1b772c0416a5deacb14f2f2dd43923f..a78a78b9f9a37bf6b22d48fddcdf44c6c1e27e92 100644 (file)
@@ -17,9 +17,6 @@ UnSet("CONFIG_LTO");
 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);
@@ -39,7 +36,7 @@ Set("CONFIG_CHARSET");
 Set("CONFIG_CHARSET_UTILS");
 
 # Libucw-xml
-UnSet("CONFIG_XML");
+Set("CONFIG_XML");
 
 # Return success
 1;
index 6bd328bc30ca5eb523d4729ef6bfcf9961d42434..e655228eb0a9890d5d849c18f804b5b2c48d5815 100644 (file)
@@ -71,8 +71,8 @@ you can move the `run` directory around your filesystem as you like:
 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.