aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--cache.c1
-rw-r--r--sshfs.c1
3 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 4f75792..1c894e5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,3 +2,4 @@
bin_PROGRAMS = sshfs
sshfs_SOURCES = sshfs.c cache.c
+sshfs_CPPFLAGS = -DFUSE_USE_VERSION=22
diff --git a/cache.c b/cache.c
index 13f485e..c5ac529 100644
--- a/cache.c
+++ b/cache.c
@@ -6,7 +6,6 @@
See the file COPYING.
*/
-#define FUSE_USE_VERSION 22
#include "cache.h"
#include <stdio.h>
#include <errno.h>
diff --git a/sshfs.c b/sshfs.c
index 48eb7f3..9f6a82c 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -6,7 +6,6 @@
See the file COPYING.
*/
-#define FUSE_USE_VERSION 22
#include <fuse.h>
#include <stdio.h>
#include <stdlib.h>