diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 2 | ||||
-rw-r--r-- | include/old/.cvsignore | 2 | ||||
-rw-r--r-- | include/old/Makefile.am | 10 | ||||
-rw-r--r-- | include/old/fuse.h | 9 |
4 files changed, 22 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 7cd75170d..7e6f6157c 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -3,7 +3,7 @@ # # Copyright (C) 2005,2006 Stefan Siegl <stesie@brokenpipe.de>, Germany -SUBDIRS = +SUBDIRS = old fuseincludedir=$(includedir)/fuse fuseinclude_HEADERS = \ 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" |