Makefile: Support NO_XATTR variable.
[metastore.git] / NEWS
blobdbb060ec5de840de80d9cddf3a1a6b816a4f18be
1 Latest stuff
2 ------------------------------------------------------------------------
4  * Support building with no extended attributes support when NO_XATTR
5    macro is predefined to non-0 value (e.g. put -DNO_XATTR in CFLAGS).
6    You can achieve it by passing NO_XATTR=1 to make invocation.
9 v1.1.2                                                      (2018-01-06)
10 ------------------------------------------------------------------------
12  * Support building on systems with undefined PATH_MAX, e.g. GNU Hurd.
13    Simple, but not ideal solution yet - PATH_MAX is assumed to be 4096.
15  * Stop assuming that LDFLAGS has flags only for the linker (LD).
16    It used to be true long time ago, when these flags were passed
17    directly to ld.  Nowadays (for quite many years already) it happens
18    differently and ld is almost never called directly during build,
19    because it's the compiler that is used for performing linking stage
20    (so called CCLD, practically almost always the same as CC).
22    The build process was already using CCLD (defaulting to CC's value),
23    but was prefixing all unprefixed flags in LDFLAGS with -Wl, prefix,
24    making it impossible to pass non-linker flags via LDFLAGS to CCLD.
25    No more!  Now it's assumed that LDFLAGS are meant to be passed to
26    the compiler, so linker flags require explicit -Wl, prefix.
29 v1.1.1a                                                     (2018-01-02)
30 ------------------------------------------------------------------------
32  * Non-code-related change requested by debian package maintainer.
33    Other distributions are unaffected by it.
36 v1.1.1                                                      (2017-12-04)
37 ------------------------------------------------------------------------
39  * BUGFIX: Reading metadata file with extended attributes entries led
40            to corruption of metadata represented in memory on 64-bit
41            platforms, so applying could led to corruption of metadata
42            on disk too.  Bug discovered thanks to Uros Juvan.
45 v1.1.0                                                      (2016-02-01)
46 ------------------------------------------------------------------------
48  * BUGFIX: Applying metadata with extended attribute having null byte
49            in value zeroed all following bytes of this xattr value.
51  * BUGFIX: Reading extended attributes while not having permissions
52            resulted in crash.
54  * Empty directories not present in metadata can be now removed when
55    applying stored metadata if -E / --remove-empty-dirs option is used.
57  * Stored metadata (in .metadata file by default) and real metadata
58    (from filesystem) can be now dumped in human-readable form using new
59    action: -d / --dump.  Please do not rely on its current format!
61  * Scripts in example/ directory do not require bash anymore and there
62    is a new example for post checkout hook.
64  * Dependency on libattr's xattr.h header has been removed.
65    As long as your libc provides sys/xattr.h (glibc does it since v2.3),
66    everything should be fine.
68  * Dependency on libbsd has been added.  It's used by dump action.