]> wimlib.net Git - wimlib/blobdiff - README
NEWS
[wimlib] / README
diff --git a/README b/README
index 8a90a6f6649725f429746b513b64797e2f3dcf75..1ed9e23ec313cef5fa26165fbecfd349e46b3bac 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,6 @@
-
                                   WIMLIB                                    
 
-This is wimlib version 0.6.3 (May 2012).  wimlib can be used to read, write,
+This is wimlib version 0.7.2 (May 2012).  wimlib can be used to read, write,
 and mount files in the Windows Imaging Format (WIM files).  These files are
 normally created by using the `imagex.exe' utility on Windows, but this library
 provides a free implementetion of imagex for UNIX-based systems.
@@ -52,7 +51,7 @@ wimlib's `configure' script:
        unmount WIM files.  wimlib_mount() and wimlib_unmount() will fail with
        WIMLIB_ERR_UNSUPPORTED.
 
---disable-libcrypto
+--without-libcrypto
        Build in functions for SHA1 rather than using external SHA1 functions
        from libcrypto (part of OpenSSL).  The default is to use libcrypto if it
        is found on the system.
@@ -72,6 +71,12 @@ wimlib's `configure' script:
        with an error message if the decompressed data does not exactly match
        the original data.  This is to find bugs.
 
+--disable-security-data
+       Wimlib cannot create or modify WIM security data, but by default it will
+       copy existing security data when modifying a WIM or exporting an image.
+       Passing this flag will disable this support; then wimlib will always
+       write WIMs without security data.
+
 --disable-error-messages
        Removes all error messages from the library.  If left in, they still
        have to explicitly turned on with wimlib_set_print_errors() in order to
@@ -95,6 +100,7 @@ wimlib's `configure' script:
        Include more debugging messages.  Only use this option if you have found
        a bug in the library.
 
+
 -------------------------------------------------------------------------------
 
                                  DEPENDENCIES
@@ -124,22 +130,15 @@ Retrieving files from the Windows Automated Installation Kit requires
 
                                  PORTABILITY
 
-I have been developing and testing wimlib on x86_64 (64-bit) GNU/Linux.
-
-wimlib has been tested on x86 (32-bit) GNU/Linux occasionally.
+wimlib has mostly been developed and tested on x86_64 (64-bit) GNU/Linux.
 
-I have not tried to compile wimlib with compilers other than gcc.
+It has been tested on x86 (32-bit) GNU/Linux occasionally.
 
-It should be possible to compile wimlib on other UNIX systems such as FreeBSD.
-If this doesn't work, let me know.  If libfuse is not available, try compiling
-with --without-fuse.
+It can also be compiled and run on FreeBSD.
 
-While the code has been tested on a little endian machine, it has been written
-to work on big endian machines as well.  (See endianness.h).  However it has
-never actually been tested on a big endian machine.  Let me know if it doesn't
-work.
+wimlib should work on big endian machines but it has not been tested.
 
-I am not planning to port wimlib to Windows since the programming interface on
+There are no plans to port wimlib to Windows since the programming interface on
 Windows is very different and Microsoft's imagex.exe is already available.
 
 ------------------------------------------------------------------------------