aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-11-07 12:35:06 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-11-07 12:35:06 +0000
commitc0938eafb8ea4927f21268eb7e67377c2c78a4eb (patch)
tree127d0b10967338b429fdffa11b05aef7ea64ae2f /include
parent97c61e98b4cb4115c5d1191edefdab125a9e16fd (diff)
downloadlibfuse-c0938eafb8ea4927f21268eb7e67377c2c78a4eb.tar.gz
build fixes
Diffstat (limited to 'include')
-rw-r--r--include/.cvsignore3
-rw-r--r--include/Makefile.am5
-rw-r--r--include/fuse.h5
-rw-r--r--include/linux/.cvsignore2
-rw-r--r--include/linux/Makefile.am3
5 files changed, 18 insertions, 0 deletions
diff --git a/include/.cvsignore b/include/.cvsignore
index 0513d7d..c8a83bf 100644
--- a/include/.cvsignore
+++ b/include/.cvsignore
@@ -1,3 +1,6 @@
+Makefile.in
+Makefile
config.h.in
+config.h
stamp-h.in
stamp-h
diff --git a/include/Makefile.am b/include/Makefile.am
new file mode 100644
index 0000000..9e67b61
--- /dev/null
+++ b/include/Makefile.am
@@ -0,0 +1,5 @@
+## Process this file with automake to produce Makefile.in
+
+SUBDIRS = linux
+
+include_HEADERS = fuse.h
diff --git a/include/fuse.h b/include/fuse.h
index 4cddaaf..14b6451 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -83,8 +83,13 @@ struct fuse_operations {
};
/* FUSE flags: */
+
+/** Process requests in multiple threads */
#define FUSE_MULTITHREAD (1 << 0)
+/** Enable debuging output */
+#define FUSE_DEBUG (1 << 1)
+
/**
* Create a new FUSE filesystem. The filesystem is not yet mounted
*
diff --git a/include/linux/.cvsignore b/include/linux/.cvsignore
new file mode 100644
index 0000000..3dda729
--- /dev/null
+++ b/include/linux/.cvsignore
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/include/linux/Makefile.am b/include/linux/Makefile.am
new file mode 100644
index 0000000..173f647
--- /dev/null
+++ b/include/linux/Makefile.am
@@ -0,0 +1,3 @@
+## Process this file with automake to produce Makefile.in
+
+noinst_HEADERS = fuse.h