]> wimlib.net Git - wimlib/blobdiff - configure.ac
Some preparations for supporting NTFS capture and apply.
[wimlib] / configure.ac
index 1efb42b343a8f36fb62bec2a92c23bbf1cff94b9..d79f130f3c778e1a315bfcd5f9db40cc302e56e7 100644 (file)
@@ -131,18 +131,19 @@ if test "x$ENABLE_VERIFY_COMPRESSION" = "xyes"; then
                   compressed data])
 fi
 
-AC_MSG_CHECKING([whether to include support for copying security data])
-AC_ARG_ENABLE([security_data],
-             AS_HELP_STRING([--disable-security-data], [disable
-                               the ability to retain the security data of
-                               existing WIMs]),
-       [ENABLE_SECURITY_DATA=$enableval],
-       [ENABLE_SECURITY_DATA=yes]
+AC_MSG_CHECKING([whether to include support for ntfs-3g])
+AC_ARG_WITH([ntfs-3g],
+             AS_HELP_STRING([--without-ntfs-3g], [build without NTFS-3g.
+                             This will disable the ability to use NTFS-specific
+                             information when capturing or applying WIMs to a
+                             NTFS filesystem.])
+       [WITH_NTFS_3G=$enableval],
+       [WITH_NTFS_3G=yes]
        )
-AC_MSG_RESULT([$ENABLE_SECURITY_DATA])
-if test "x$ENABLE_SECURITY_DATA" = "xyes"; then
-       AC_DEFINE([ENABLE_SECURITY_DATA], [1], [Define to 1 to enable support
-                  for copying security data])
+AC_MSG_RESULT([$WITH_NTFS_3G])
+if test "x$WITH_NTFS_3G" = "xyes"; then
+       AC_DEFINE([WITH_NTFS_3G], [1], [Define to 1 to enable support for
+                  NTFS-specific information])
 fi
 
 AC_MSG_CHECKING([whether to include support for mounting WIMs])