diff options
Diffstat (limited to 'include/old')
-rw-r--r-- | include/old/.cvsignore | 2 | ||||
-rw-r--r-- | include/old/Makefile.am | 10 | ||||
-rw-r--r-- | include/old/fuse.h | 9 |
3 files changed, 21 insertions, 0 deletions
diff --git a/include/old/.cvsignore b/include/old/.cvsignore new file mode 100644 index 000000000..3dda72986 --- /dev/null +++ b/include/old/.cvsignore @@ -0,0 +1,2 @@ +Makefile.in +Makefile diff --git a/include/old/Makefile.am b/include/old/Makefile.am new file mode 100644 index 000000000..f038a1cc1 --- /dev/null +++ b/include/old/Makefile.am @@ -0,0 +1,10 @@ +# Makefile.am +# Used by automake and configure to create Makefile. +# +# Copyright (C) 2005,2006 Stefan Siegl <stesie@brokenpipe.de>, Germany + +SUBDIRS = + +fuseincludedir=$(includedir) +fuseinclude_HEADERS = \ + fuse.h diff --git a/include/old/fuse.h b/include/old/fuse.h new file mode 100644 index 000000000..3db0945a9 --- /dev/null +++ b/include/old/fuse.h @@ -0,0 +1,9 @@ +/* + This header is for compatibility with older software using FUSE. + + Please use 'pkg-config --cflags fuse' to set include path. The + correct usage is still '#include <fuse.h>', not '#include + <fuse/fuse.h>'. +*/ + +#include "fuse/fuse.h" |