aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAge
* Added public fuse_lib_help(), bumped minor versionGravatar Nikolaus Rath2017-07-08
|
* Released libfuse 3.0.2Gravatar Nikolaus Rath2017-05-24
|
* Released 3.0.1Gravatar Nikolaus Rath2017-04-10
|
* Set IGNORE_MTAB when running under NetBSDGravatar Nikolaus Rath2016-12-23
| | | | | | | Apparently, NetBSD does not have /etc/mtab. Setting IGNORE_MTAB in this case makes the code a little nicer. See also https://github.com/libfuse/libfuse/pull/123
* Released 3.0.0Gravatar Nikolaus Rath2016-12-09
|
* Released 3.0.0rc3Gravatar Nikolaus Rath2016-11-29
|
* Make test for util-linux version more robustGravatar Nikolaus Rath2016-11-10
| | | | | | | The current version fails on Amazon Linux. This check should work better. Fixes #64.
* Released 3.0.0-rc2Gravatar Nikolaus Rath2016-11-06
|
* Released 3.0.0rc1Gravatar Nikolaus Rath2016-10-28
|
* Renamed some examples to make their function more obviousGravatar Nikolaus Rath2016-10-09
| | | | Also, added more comments for the same purpose.
* Released 3.0.0pre0Gravatar Nikolaus Rath2016-10-03
|
* Don't hardcode /sbin, /lib & /etcGravatar bobrofon2016-08-04
| | | | | | 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".
* Integrate tests with autotoolsGravatar Nikolaus Rath2016-03-29
|
* Removed placeholder README file and switch automake to foreign flavor.Gravatar Nikolaus Rath2016-01-14
| | | | | | 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.
* Use system directory for system-wide udev rules by defaultGravatar Ikey Doherty2015-05-26
| | | | | | | 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>
* compile fix for fuse_lo-plusGravatar Miklos Szeredi2014-03-18
|
* compile fixGravatar Miklos Szeredi2014-03-17
|
* libfuse: implement readdirplus for high-level APIGravatar Eric Wong2014-03-05
| | | | | | | | | | 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.
* Advertize the existence of some "configure" env vars.Gravatar Fabrice Bauzac2013-09-23
| | | | | Advertize the existence of env vars MOUNT_FUSE_PATH, UDEV_RULES_PATH and INIT_D_PATH in the execution of ./configure.
* libfuse: add the "subdir-objects" automake optionGravatar Fabrice Bauzac2013-09-04
| | | | | to fix a warning issued by automake 1.14.
* ulockmgr: strip ulockmgr support from this source packageGravatar Miklos Szeredi2013-07-25
| | | | | | 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.
* libfuse: fuse -> fuse3Gravatar Miklos Szeredi2013-07-25
| | | | | | 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.
* Use AC_PROG_CC_STDC instead of AC_PROG_CCGravatar Miklos Szeredi2013-07-25
| | | | We do need a C99 compiler
* libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pcGravatar Miklos Szeredi2013-07-24
| | | | add AC_SYS_LARGEFILE to your configure.ac instead.
* libfuse: set close-on-exec flag on pipe file descriptorsGravatar Eric Wong2013-02-06
| | | | | | | | | 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.
* Merge branch 'fuse_2_9_bugfix'Gravatar Miklos Szeredi2013-02-04
|
* libfuse: rename ./configure.in to ./configure.acGravatar Anatol Pomozov2013-02-04
Next version of automake (1.14) removes support for the deprecated filename http://lists.gnu.org/archive/html/autotools-announce/2013-01/msg00000.html