aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorLines
2013-02-04libfuse: rename ./configure.in to ./configure.acAnatol Pomozov-124/+0
Next version of automake (1.14) removes support for the deprecated filename http://lists.gnu.org/archive/html/autotools-announce/2013-01/msg00000.html
2013-02-04libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADERAnatol Pomozov-1/+1
AM_CONFIG_HEADER has been deprecated for years and autotools 1.13 removes this macros at all.
2013-02-04libfuse: configure: detect new util-linuxMiklos Szeredi-2/+6
Apparently new versions of util-linux umount return with an exit status of 1 even if the "--fake" option is recognised (despite being documented otherwise). Check this condition and don't complain about util-linux version.
2012-10-01Released 2.9.2Miklos Szeredi-1/+2
2012-08-13Fix linking against GNU libiconvNatanael Copa-1/+1
Use quotation marks when assigning shell variable. This broke by 384496dd02cfd9a74b95d62ce0d23a31a7af3730, most likely by mistake.
2012-07-19Released 2.9.1Miklos Szeredi-1/+1
2012-07-04Fix build with automake >= 1.12.1Olivier Blin-6/+2
mkdir_p is deprecated since automake 1.12.1 (see automake commit 7a1eb9ff9027929687f12905e131f6fda3fa6d0c). MKDIR_P should be used instead of mkdir_p. This is available since autoconf 2.59d (2006-06-05), by calling AC_PROG_MKDIR_P. The mkdir_p workaround was not working anyway for out-of-tree builds, since the ../mkinstalldirs path would be incorrect.
2012-06-18Add FALLOCATE operationAnatol Pomozov-0/+1
fallocate filesystem operation preallocates media space for the given file. If fallocate returns success then any subsequent write to the given range never fails with 'not enough space' error.
2012-05-16Fix -pthread in fuse.pcMiklos Szeredi-3/+2
Linking to a library that uses threads requires the application to be linked with -pthreads otherwise some pthread functions will be linked to stubs in glibc. So move -pthread from Libs.private to Libs in fuse.pc. Reported by Werner Fink
2012-04-20Released 2.9.0Miklos Szeredi-1/+1
2012-01-26Add doc/Makefile.amMiklos Szeredi-1/+1
2011-12-08utimens availability checkEmmanuel Dreyfus-1/+1
fusexmp uses utimens and takes that function for granted. It is part of POSIX exended API set 2 and some systems do not have it yet. Attached patch checks for utimens availability and returns ENOSYS if unavailable.
2011-06-02In ./configure check if umount support --fake and --no-canonicalizeMiklos Szeredi-0/+22
options and warn othewise
2011-05-27Check if splice/vmsplice are supportedMiklos Szeredi-1/+1
2011-05-20Cleaner build outputReuben Hawkins-0/+1
Add m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) for cleaner build output. The verbose output is still available with 'make V=1'
2011-01-31fusermount: only allow mount and umount if util-linux suppports ↵Miklos Szeredi-6/+0
--no-canonicalize Remove "legacy" util-linux support as missing --no-canonicalize cannot be worked around in fuse.
2010-11-08bump version to 2.9.0-pre0Miklos Szeredi-1/+1
2010-11-08update umount procedureMiklos Szeredi-0/+7
If umount(8) supports --fake and --no-canonicalize (util-linux-ng version 2.18 or later), and umount(2) supports the UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then, "fusermount -u" will call the umount(2) system call and use "umount --fake ..." to update /etc/mtab Added --disable-legacy-umount option to configure. This disables the runtime checking of umount(8) version. When built with this option then "fusermount -u" will fail if umount(8) doesn't support the --fake and --no-canonicalize options.
2010-10-14Use LTLIBICONV when linking libfuseNatanael Copa-1/+1
This fixes building against uclibc + libiconv. Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
2010-08-27Add NetBSD supportMiklos Szeredi-0/+2
The bulk of it is just about adding ifdef __NetBSD__ where there is already an ifdef __FreeBSD__ Add a arch=netbsd to deal with NetBSD specifics. I suggests that arch=bsd could be renamed to arch=freebsd NetBSD specific linking with -lperfuse NetBSD patches to lib/mount.c. It turned to be less itrusive to patch mount;c than mount_bsd.c. I suggest mount_bsd.c could be renamed to mount_freebsd.c Patch from Emmanuel Dreyfus
2010-04-26* Fix checking for symlinks in umount from /tmp. Reported by AlMiklos Szeredi-1/+1
Viro * Fix umounting if /tmp is a symlink. Reported by Franco Broi
2010-02-01* Released 2.8.3Miklos Szeredi-1/+1
* Using --no-canonicalize with umount(8) conflicts with the race fix, sinceit assumes the supplied path is absolute, while the race fix relies on the path being relative to the current directory
2010-01-26* Released 2.8.2Miklos Szeredi-1/+1
2009-09-11* Released 2.8.1Miklos Szeredi-1/+1
2009-08-18* Add missing fuse_session_data to versionscriptMiklos Szeredi-1/+2
* Make sure all global symbols are prefixed with "fuse_" or "cuse_" * Released 2.8.0
2009-07-06* Released 2.8.0-pre3Miklos Szeredi-1/+1
2009-01-05Released 2.8.0-pre2Miklos Szeredi-1/+1
2008-07-10Released 2.8.0-pre1Miklos Szeredi-1/+1
2008-06-16Remove fuse kernel module sourcesMiklos Szeredi-6/+0
2008-02-20update versions to 2.8.0-pre0Miklos Szeredi-1/+1
2007-12-12Disable old symbol versions if __UCLIBC__ is definedMiklos Szeredi-1/+1
2007-10-16Released 2.7.1Miklos Szeredi-1/+1
2007-07-02Released 2.7.0Miklos Szeredi-1/+1
2007-05-02kernel: sync with mainline...Miklos Szeredi-1/+1
2007-04-05*** empty log message ***Miklos Szeredi-0/+10
2007-03-14merge bugfixes up to merge3Miklos Szeredi-1/+1
2007-03-14Correctly handle O_APPEND in direct IO modeMiklos Szeredi-2/+0
2007-02-03Add filesystem stacking support to high level APIMiklos Szeredi-2/+3
2006-12-04build fixesMiklos Szeredi-1/+1
2006-12-01new releaseMiklos Szeredi-1/+1
2006-10-28build/install fixes + add bug reporting instructions to READMEMiklos Szeredi-0/+1
2006-10-22new releaseMiklos Szeredi-1/+1
2006-10-16cleanups + new release candidateMiklos Szeredi-1/+1
2006-10-01Add init scriptMiklos Szeredi-2/+5
2006-09-24Support for nanosec times on FBSD and other FBSD fixesCsaba Henk-0/+1
2006-09-10ulockmgrMiklos Szeredi-1/+1
2006-07-30fixesMiklos Szeredi-3/+3
2006-06-29*** empty log message ***Miklos Szeredi-1/+1
2006-06-01fix: adjust threading related compiler flagsCsaba Henk-1/+1
2006-03-14*** empty log message ***Miklos Szeredi-1/+1