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.
pull/3/head
Eric Biggers 2017-04-08 09:40:27 -07:00
parent 7a22784f90
commit f01c486d2f
2 changed files with 3 additions and 10 deletions

View File

@ -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

View File

@ -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