From f01c486d2f12c25c6896fc47092497e43cb3e3cb Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 8 Apr 2017 09:40:27 -0700 Subject: [PATCH] Require NTFS-3G 2017.3.23 or later Now that a new stable NTFS-3G version has been released, we should require that. This also fixes the known bug in lowntfs-3g. --- README.md | 8 +------- configure.ac | 5 ++--- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2520114..ca23266 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Windows 10 systems have been using it by default. This repository contains a plugin which enables the NTFS-3G FUSE driver to transparently read from system-compressed files. It must be built against -NTFS-3G version 2016.2.22AR.1 or later, since that was the first version to +NTFS-3G version 2017.3.23 or later, since that was the first stable version to include support for reparse point plugins. Currently, only reading is supported. Compressing an existing file may be done @@ -49,12 +49,6 @@ licensed LGPLv3+, but I have relicensed the version in this plugin to GPLv2+ for consistency with NTFS-3G's license. (Public domain portions remain public domain.) -# Known issues - -Various problems occur if the NTFS volume is mounted with `lowntfs-3g` instead -of with `ntfs-3g`. This is caused by a bug in `lowntfs-3g`, and a fix to -`lowntfs-3g` has been proposed. - # Notices The NTFS-3G system compression plugin was written by Eric Biggers, with diff --git a/configure.ac b/configure.ac index 4bc52c2..b799f89 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([ntfs-3g-system-compression], [0.3], [ebiggers3@gmail.com]) +AC_INIT([ntfs-3g-system-compression], [0.4], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/plugin.c]) AC_CONFIG_MACRO_DIR([m4]) @@ -23,7 +23,6 @@ AC_CHECK_HEADERS([errno.h \ string.h \ sys/types.h]) -# TODO: should be changed to require 2017.#.## when released -PKG_CHECK_MODULES([LIBNTFS_3G], [libntfs-3g >= 2016.2.22], [], +PKG_CHECK_MODULES([LIBNTFS_3G], [libntfs-3g >= 2017.3.23], [], [AC_MSG_ERROR(["Unable to find libntfs-3g"])]) AC_OUTPUT