diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | example/fusexmp.c | 2 | ||||
-rw-r--r-- | example/fusexmp_fh.c | 2 |
3 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,8 @@ What is new in 2.7 - Stacking support for the high level API + - Add filename charset conversion module + - Improved mounting What is new in 2.6 diff --git a/example/fusexmp.c b/example/fusexmp.c index 464f792..8df474c 100644 --- a/example/fusexmp.c +++ b/example/fusexmp.c @@ -10,7 +10,9 @@ #define FUSE_USE_VERSION 26 +#ifdef HAVE_CONFIG_H #include <config.h> +#endif #ifdef linux /* For pread()/pwrite() */ diff --git a/example/fusexmp_fh.c b/example/fusexmp_fh.c index daacb71..6565cf9 100644 --- a/example/fusexmp_fh.c +++ b/example/fusexmp_fh.c @@ -10,7 +10,9 @@ #define FUSE_USE_VERSION 26 +#ifdef HAVE_CONFIG_H #include <config.h> +#endif #define _GNU_SOURCE |