From a4ce2745a3cb09d92a2665e39ea3c59e2ea6602c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Fri, 28 Sep 2012 14:10:35 +0200 Subject: [PATCH] Always use FUSE version 26, not just on Mac OS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a79d0c7..4300870 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ TARGET = sparsebundlefs PKG_CONFIG = pkg-config CFLAGS = -Wall -O2 +DEFINES = -DFUSE_USE_VERSION=26 ifeq ($(shell uname), Darwin) # Pick up OSXFUSE, even with pkg-config from MacPorts PKG_CONFIG := PKG_CONFIG_PATH=/usr/local/lib/pkgconfig $(PKG_CONFIG) - DEFINES = -DFUSE_USE_VERSION=26 endif FUSE_FLAGS := $(shell $(PKG_CONFIG) fuse --cflags --libs)