Skip to content
Commits on Source (7)
......@@ -30,8 +30,9 @@ ENABLE_MAN ?= $(HAS_A2X)
HAS_A2X ?= $(shell command -v a2x >/dev/null && echo yes || echo no)
# FUSE
FUSE_CFLAGS ?= $(shell pkg-config --cflags fuse) -DFUSE_USE_VERSION=26
FUSE_LIBS ?= $(shell pkg-config --libs fuse) -lulockmgr
PKG_CONFIG ?= pkg-config
FUSE_CFLAGS ?= $(shell $(PKG_CONFIG) --cflags fuse) -DFUSE_USE_VERSION=26
FUSE_LIBS ?= $(shell $(PKG_CONFIG) --libs fuse) -lulockmgr
# CXXFLAGS
CXXFLAGS += -std=c++11 -Wno-unused-parameter
......
disorderfs (0.5.8-1) unstable; urgency=medium
[ Helmut Grohne ]
* Use the build architecture's pkg-config to permit cross-architecture
builds. (Closes: #949609)
-- Chris Lamb <lamby@debian.org> Wed, 22 Jan 2020 21:23:23 +0000
disorderfs (0.5.7-1) unstable; urgency=medium
[ Chris Lamb ]
* Ignore the return values to fsyncdir to ensure (for example) dpkg(1) can
"flush" /var/lib/dpkg.
[ Debian Janitor ]
* Bump debhelper from old 11 to 12.
* Re-export upstream signing key without extra signatures.
......
......@@ -43,7 +43,7 @@ extern "C" {
#include <sys/file.h>
#include <stddef.h>
#define DISORDERFS_VERSION "0.5.7"
#define DISORDERFS_VERSION "0.5.8"
namespace {
std::vector<std::string> bare_arguments;
......