Skip to content
Commits on Source (2)
......@@ -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
......
......@@ -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;
......