*.cache
config.status
depcomp
+libtool
+2004-06-03 Miklos Szeredi <mszeredi@inf.bme.hu>
+
+ * Build shared library as well as static (using libtool)
+
+ * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
+ there has not been a release with the previous minor number, and I
+ hope nobody is using it for anything.
+
2004-05-18 Miklos Szeredi <mszeredi@inf.bme.hu>
* Added flush() call
AM_CONFIG_HEADER(include/config.h)
AC_PROG_CC
-AC_PROG_RANLIB
+AC_PROG_LIBTOOL
if test -z "$LD"; then
LD=ld
fusexmp
null
hello
+.libs
null_SOURCES = null.c
hello_SOURCES = hello.c
-LDADD = ../lib/libfuse.a -lpthread
+LDADD = ../lib/libfuse.la
#define FUSE_MAJOR_VERSION 2
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 1
+#define FUSE_MINOR_VERSION 0
/* This interface uses 64 bit off_t */
#if _FILE_OFFSET_BITS != 64
Makefile.in
Makefile
.deps
+.libs
+*.lo
+*.la
## Process this file with automake to produce Makefile.in
-lib_LIBRARIES = libfuse.a
+lib_LTLIBRARIES = libfuse.la
-libfuse_a_SOURCES = \
+libfuse_la_SOURCES = \
fuse.c \
fuse_mt.c \
helper.c \
mount.c \
fuse_i.h
+
+libfuse_la_LDFLAGS = -lpthread -version-number 2:0:0
#! /bin/sh
+echo "NOTE: this script is obsolete. Use autoreconf instead!"
+echo Running libtoolize...
+libtoolize --automake
echo Running aclocal...
aclocal
echo Running autoheader...
Makefile.in
Makefile
.deps
+.libs
fusermount
fuse_ioslave