diff --git a/disk/ntfs-3g-system-compression/DEPENDS
b/disk/ntfs-3g-system-compression/DEPENDS
new file mode 100755
index 0000000..c5ef7cb
--- /dev/null
+++ b/disk/ntfs-3g-system-compression/DEPENDS
@@ -0,0 +1,2 @@
+depends ntfs-3g &&
+depends fuse
diff --git a/disk/ntfs-3g-system-compression/DETAILS
b/disk/ntfs-3g-system-compression/DETAILS
new file mode 100755
index 0000000..5a35248
--- /dev/null
+++ b/disk/ntfs-3g-system-compression/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=ntfs-3g-system-compression
+ VERSION=1.0
+
SOURCE_HASH=sha512:fcb233af3d075a49c0f0ffabf8802af4a44251a4fe5e197b608da924f6a7fe591fecad5e13b5fdff9679a80b12d68abe174148e3b71f70320f87a8e14cecb70c
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=https://github.com/ebiggers/$SPELL
+ SOURCE_URL[0]=$WEB_SITE/releases/download/v$VERSION/$SOURCE
+ LICENSE[0]=LGPL
+ ENTERED=20180105
+ KEYWORDS=""
+ SHORT="NTFS-3G plugin"
+cat << EOF
+NTFS-3G plugin for reading "system compressed" files.
+
+System compression, also known as "Compact OS", is a Windows feature that
allows
+rarely modified files to be compressed using the XPRESS or LZX compression
formats.
+It is not built directly into NTFS but rather is implemented using reparse
points.
+This feature appeared in Windows 10 and it appears that many Windows 10
systems have
+been using it by default.
+EOF
diff --git a/disk/ntfs-3g-system-compression/HISTORY
b/disk/ntfs-3g-system-compression/HISTORY
new file mode 100644
index 0000000..54edb00
--- /dev/null
+++ b/disk/ntfs-3g-system-compression/HISTORY
@@ -0,0 +1,5 @@
+2018-01-05 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.0
+ this is needed to process partitions created by Windows 10
+ spell created
+
diff --git a/disk/ntfs-3g/BUILD b/disk/ntfs-3g/BUILD
index 56377fb..c409109 100755
--- a/disk/ntfs-3g/BUILD
+++ b/disk/ntfs-3g/BUILD
@@ -1,2 +1,2 @@
-OPTS="$NTFS3G_ACL $NTFS3G_XATTR $NTFS3G_MTAB ${OPTS}" &&
+OPTS="$NTFS3G_ACL $NTFS3G_XATTR $NTFS3G_MTAB $NTFS3G_EXTRAS ${OPTS}" &&
default_build
diff --git a/disk/ntfs-3g/CONFIGURE b/disk/ntfs-3g/CONFIGURE
index 5105f89..1d56bcb 100755
--- a/disk/ntfs-3g/CONFIGURE
+++ b/disk/ntfs-3g/CONFIGURE
@@ -9,3 +9,6 @@ config_query_option NTFS3G_XATTR "Enable system extended
attributes mappings?" y
config_query_option NTFS3G_MTAB 'Enable usage of /etc/mtab ?' y \
'--enable-mtab' \
'--disable-mtab'
+config_query_option NTFS3G_EXTRAS 'enable extras, needed for Windows 10' y \
+ '--enable-extras' \
+ '--disable-extras'
diff --git a/disk/ntfs-3g/DEPENDS b/disk/ntfs-3g/DEPENDS
index 5668791..b0a939d 100755
--- a/disk/ntfs-3g/DEPENDS
+++ b/disk/ntfs-3g/DEPENDS
@@ -7,4 +7,5 @@ message 'If you want to allow normal users to mount ntfs
filesystems,' &&
message 'then you need internal fuse support' &&
optional_depends fuse '--with-fuse=external' \
'--with-fuse=internal' \
- 'use external FUSE?'
+ 'use external FUSE?' &&
+suggest_depends ntfs-3g-system-compression 'support Windows 10'
diff --git a/disk/ntfs-3g/HISTORY b/disk/ntfs-3g/HISTORY
index 584fa6b..d1bbcc8 100644
--- a/disk/ntfs-3g/HISTORY
+++ b/disk/ntfs-3g/HISTORY
@@ -1,3 +1,8 @@
+20118-01-04 Treeve Jelbert <treeve AT sourcemage.org>
+ * CONFIGURE BUILD: support extras, such as compression plugin.
+ which is needed for Windows 10
+ * DEPENDS: suggest ntfs-3g-system-compression
+
2017-05-28 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2017.3.23