aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Collapse)AuthorLines
2016-10-28Released 3.0.0rc1Nikolaus Rath-1/+1
2016-10-09Renamed some examples to make their function more obviousNikolaus Rath-2/+2
Also, added more comments for the same purpose.
2016-10-03Released 3.0.0pre0Nikolaus Rath-1/+1
2016-08-04Don't hardcode /sbin, /lib & /etcbobrofon-3/+3
Default values for MOUNT_FUSE_PATH, UDEV_RULES_PATH and INIT_D_PATH should be based on directory variables from GNU Coding Standarts. Directory variables left unexpanded because installation directory options may be changed via "make install prefix=/foo".
2016-03-29Integrate tests with autotoolsNikolaus Rath-4/+9
2016-01-14Removed placeholder README file and switch automake to foreign flavor.Nikolaus Rath-1/+1
The GNU flavor merely requires to existence of some files (including README, but we prefer README.md), so there seems to be little point in using it.
2015-05-26Use system directory for system-wide udev rules by defaultIkey Doherty-1/+1
This ensures that fuse functions correctly on stateless operating systems without requiring use of the site configuration directory (/etc/). Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
2014-03-18compile fix for fuse_lo-plusMiklos Szeredi-1/+1
2014-03-17compile fixMiklos Szeredi-1/+1
2014-03-05libfuse: implement readdirplus for high-level APIEric Wong-1/+1
Reuse the old "readdir" callback, but add a flags argument, that has FUSE_READDIR_PLUS in case this is a "plus" version. Filesystems can safely ignore this flag, but if they want they can add optimizations based on it: i.e. only retrieve the full attributes in PLUS mode. The filler function is also given a flags argument and the filesystem can set FUSE_FILL_DIR_PLUS if all the attributes in "stat" are valid.
2013-09-23Advertize the existence of some "configure" env vars.Fabrice Bauzac-0/+3
Advertize the existence of env vars MOUNT_FUSE_PATH, UDEV_RULES_PATH and INIT_D_PATH in the execution of ./configure.
2013-09-04libfuse: add the "subdir-objects" automake optionFabrice Bauzac-1/+1
to fix a warning issued by automake 1.14.
2013-07-25ulockmgr: strip ulockmgr support from this source packageMiklos Szeredi-0/+5
Distribute ulockmgr separately. It is not needed for the building of libfuse, only fusexmp_fh. Check ulockmgr library in ./configure and if not disable remote-lock suport in fusexmp_fh.
2013-07-25libfuse: fuse -> fuse3Miklos Szeredi-1/+1
Allow 2.X and 3.X to coexist. Includes are now stored under /usr/include/fuse3 and library is named libfuse3.*. Invoke pkg-config with "fuse3" as the first argument to build with version 3 of the library.
2013-07-25Use AC_PROG_CC_STDC instead of AC_PROG_CCMiklos Szeredi-1/+1
We do need a C99 compiler
2013-07-24libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pcMiklos Szeredi-0/+1
add AC_SYS_LARGEFILE to your configure.ac instead.
2013-02-06libfuse: set close-on-exec flag on pipe file descriptorsEric Wong-1/+1
The FUSE library may be used from any number of programs which may also fork() + execve(), so set the close-on-exec flag to avoid inadvertant leakage of pipe file descriptors. While we're at it, attempt to use pipe2() since this is within a (currently) Linux-only code path and pipe2() offers thread-safety.
2013-02-04Merge branch 'fuse_2_9_bugfix'Miklos Szeredi-0/+123
2013-02-04libfuse: rename ./configure.in to ./configure.acAnatol Pomozov-0/+124
Next version of automake (1.14) removes support for the deprecated filename http://lists.gnu.org/archive/html/autotools-announce/2013-01/msg00000.html