qemu-gpiodev/libfuse.git
7 years agoReleased 3.1.1 fuse-3.1.1
Nikolaus Rath [Sun, 6 Aug 2017 11:24:40 +0000 (13:24 +0200)]
Released 3.1.1

7 years agoos_open(): don't attempt to close fd if open failed.
Nikolaus Rath [Sun, 6 Aug 2017 11:24:20 +0000 (13:24 +0200)]
os_open(): don't attempt to close fd if open failed.

7 years agoAdded writeback cache to passthrough_ll
Nikolaus Rath [Fri, 4 Aug 2017 20:38:03 +0000 (22:38 +0200)]
Added writeback cache to passthrough_ll

This fixes issue #191 (where the test was done by simply adding
FUSE_CAP_WRITEBACK_CACHE without adjusting the flags in the
open() call).

Fixes: #191.
7 years agoClarified documentation for fuse_parse_cmdline()
Nikolaus Rath [Fri, 4 Aug 2017 20:38:29 +0000 (22:38 +0200)]
Clarified documentation for fuse_parse_cmdline()

7 years agoRemoved compat stuff in passthrough_ll
Nikolaus Rath [Fri, 4 Aug 2017 20:17:06 +0000 (22:17 +0200)]
Removed compat stuff in passthrough_ll

As the comment says, this made it compile but not work. If there is a
need, we can add these checks to meson.build to only build this file
if the prerequisites are satisfied.

7 years agoClarify how the filesystem should handle open/create flags
Nikolaus Rath [Fri, 4 Aug 2017 20:12:36 +0000 (22:12 +0200)]
Clarify how the filesystem should handle open/create flags

7 years agopassthrough_ll: added more debugging output
Nikolaus Rath [Fri, 4 Aug 2017 19:56:45 +0000 (21:56 +0200)]
passthrough_ll: added more debugging output

7 years agoAdded append and seek tests
Nikolaus Rath [Fri, 4 Aug 2017 18:13:08 +0000 (20:13 +0200)]
Added append and seek tests

7 years agoInclude ChangeLog in tarball
Nikolaus Rath [Fri, 4 Aug 2017 18:12:58 +0000 (20:12 +0200)]
Include ChangeLog in tarball

7 years agoSimplify and fix FreeBSD fsname handling
Nikolaus Rath [Thu, 3 Aug 2017 15:19:22 +0000 (17:19 +0200)]
Simplify and fix FreeBSD fsname handling

This should simplify the code a lot. It also corrects a bug in
that the (former) add_default_fsname() function actually set
the -osubtype option.

7 years agoSimply #ifdefs
Nikolaus Rath [Thu, 3 Aug 2017 15:13:23 +0000 (17:13 +0200)]
Simply #ifdefs

mount_bsd.c is only used when compiling for *BSD, and FreeBSD
is the only BSD that supports FUSE. So there really is no need
to check if this file is compiled under FreeBSD.

7 years agoFix FreeBSD detection in meson.build
Nikolaus Rath [Thu, 3 Aug 2017 15:12:25 +0000 (17:12 +0200)]
Fix FreeBSD detection in meson.build

7 years agoAdded ChangeLog entry for FreeBSD commits.
Nikolaus Rath [Thu, 3 Aug 2017 15:12:15 +0000 (17:12 +0200)]
Added ChangeLog entry for FreeBSD commits.

7 years agoFreeBSD: supprt fsname= option
Baptiste Daroussin [Thu, 3 Aug 2017 12:37:07 +0000 (14:37 +0200)]
FreeBSD: supprt fsname= option

7 years agoFreeBSD: use unmount(2) and add missing FreeBSD mount option
Baptiste Daroussin [Thu, 3 Aug 2017 12:24:22 +0000 (14:24 +0200)]
FreeBSD: use unmount(2) and add missing FreeBSD mount option

7 years agoFreeBSD: do not build utilities
Baptiste Daroussin [Thu, 3 Aug 2017 12:04:36 +0000 (14:04 +0200)]
FreeBSD: do not build utilities

7 years agoProduce more helpful message on OS-X and Windows.
Nikolaus Rath [Thu, 3 Aug 2017 11:44:32 +0000 (13:44 +0200)]
Produce more helpful message on OS-X and Windows.

Fixes: #186.
7 years agoDon't check st_nlink value for mkdir
Nikolaus Rath [Thu, 3 Aug 2017 11:07:30 +0000 (13:07 +0200)]
Don't check st_nlink value for mkdir

Some filesystems don't track this for directories.

Fixes: #180.
7 years agoAdded changelog entry for symbol versioning fixes.
Nikolaus Rath [Thu, 3 Aug 2017 11:01:12 +0000 (13:01 +0200)]
Added changelog entry for symbol versioning fixes.

7 years agoAdded changelog entry for commit f0ecf.
Nikolaus Rath [Thu, 3 Aug 2017 11:00:09 +0000 (13:00 +0200)]
Added changelog entry for commit f0ecf.

7 years agoFix compilation on 32bit systems
Nikolaus Rath [Thu, 3 Aug 2017 10:56:02 +0000 (12:56 +0200)]
Fix compilation on 32bit systems

Fixes: #185.
7 years agoAsk pkgconfig where we should install udev rules
Heiko Becker [Fri, 28 Jul 2017 15:33:56 +0000 (17:33 +0200)]
Ask pkgconfig where we should install udev rules

7 years agoFix compiler warnings of gcc-5.4.x
Banglang [Tue, 1 Aug 2017 09:10:32 +0000 (17:10 +0800)]
Fix compiler warnings of gcc-5.4.x

Signed-off-by: Banglang <banglang.huang@foxmail.com>
7 years agoOnly declare fuse_new_30() when FUSE_USE_VERSION == 30
Nikolaus Rath [Thu, 13 Jul 2017 11:23:32 +0000 (13:23 +0200)]
Only declare fuse_new_30() when FUSE_USE_VERSION == 30

This function shouldn't be called when using a newer fuse
version, so we should not define it in that case.

7 years agofuse_new_30(): call fuse_new_31(), not fuse_new()
Nikolaus Rath [Thu, 13 Jul 2017 11:22:12 +0000 (13:22 +0200)]
fuse_new_30(): call fuse_new_31(), not fuse_new()

I believe this function call is resolved by the compiler, not
the linker, so this seems safer.

Thanks to Chris Clayton for spotting this.

7 years agoFixup symbol versioning for GCC 4.x
Nikolaus Rath [Sat, 8 Jul 2017 11:11:47 +0000 (13:11 +0200)]
Fixup symbol versioning for GCC 4.x

GCC 4.8 doesn't like to rename fuse_new_30 to fuse_new, if we
also define an implementation for fuse_new.

7 years agoReleased 3.1.0 fuse-3.1.0
Nikolaus Rath [Sat, 8 Jul 2017 10:11:01 +0000 (12:11 +0200)]
Released 3.1.0

7 years agoAdded public fuse_lib_help(), bumped minor version
Nikolaus Rath [Fri, 7 Jul 2017 13:25:41 +0000 (15:25 +0200)]
Added public fuse_lib_help(), bumped minor version

7 years agoFixed description of struct fuse_conn_info->time_gran
Nikolaus Rath [Fri, 7 Jul 2017 23:12:59 +0000 (01:12 +0200)]
Fixed description of struct fuse_conn_info->time_gran

At least on Linux kernel 4.9, a value of zero gives more
than 1-sec accuracy.

7 years agoError out if FUSE_USE_VERSION is not defined
Nikolaus Rath [Fri, 7 Jul 2017 13:34:32 +0000 (15:34 +0200)]
Error out if FUSE_USE_VERSION is not defined

This is safer than making assumptions.

7 years agoDon't use emacs' python-mode for meson files
Nikolaus Rath [Fri, 7 Jul 2017 13:29:30 +0000 (15:29 +0200)]
Don't use emacs' python-mode for meson files

There is a proper meson-mode now.

7 years agoFixed typo in Changelog
Nikolaus Rath [Fri, 7 Jul 2017 13:27:17 +0000 (15:27 +0200)]
Fixed typo in Changelog

7 years agoDon't redefine FUSE_USE_VERSION
Nikolaus Rath [Thu, 6 Jul 2017 16:29:53 +0000 (18:29 +0200)]
Don't redefine FUSE_USE_VERSION

It's already set in meson.build as compiler flag.

7 years agoTravis: use sudo-enabled environment.
Nikolaus Rath [Thu, 6 Jul 2017 11:13:42 +0000 (13:13 +0200)]
Travis: use sudo-enabled environment.

7 years agoAdded information about professional support.
Nikolaus Rath [Thu, 6 Jul 2017 10:40:31 +0000 (12:40 +0200)]
Added information about professional support.

7 years agoFixed bug in code example in ChangeLog.
Nikolaus Rath [Thu, 6 Jul 2017 10:40:16 +0000 (12:40 +0200)]
Fixed bug in code example in ChangeLog.

7 years agoInstall init script in $DESTDIR/etc, not $prefix/$sysconfdir
Nikolaus Rath [Wed, 21 Jun 2017 22:41:37 +0000 (15:41 -0700)]
Install init script in $DESTDIR/etc, not $prefix/$sysconfdir

Fixes: #178.
7 years agotst_readdir(): actually go through FUSE
Nikolaus Rath [Tue, 20 Jun 2017 23:37:51 +0000 (16:37 -0700)]
tst_readdir(): actually go through FUSE

The previous code didn't actually go through the mountpoint at all.

7 years agoClarify *_timeout semantics
Nikolaus Rath [Thu, 8 Jun 2017 17:32:46 +0000 (13:32 -0400)]
Clarify *_timeout semantics

When changes always come through kernel, timeouts
should be large.

7 years agoDescribe supported platforms.
Nikolaus Rath [Tue, 6 Jun 2017 13:31:50 +0000 (09:31 -0400)]
Describe supported platforms.

7 years agogetgroups(): clarify code
Nikolaus Rath [Mon, 5 Jun 2017 11:27:31 +0000 (07:27 -0400)]
getgroups(): clarify code

read() return value should always be positive or -1. However,
since we cast to unsigned a little later, it's clearer
to check for non-negativity.

7 years agoFix comparison of integers of different signs
Angelo G. Del Regno [Sun, 4 Jun 2017 09:02:07 +0000 (11:02 +0200)]
Fix comparison of integers of different signs

Some variables of different size and sign were getting compared
without any safe casting.
The build system also throws warnings at this and, being this
library used for filesystems, it's really important to ensure
stability.

7 years agoexamples/passthrough_ll: added support for create()
Nikolaus Rath [Mon, 5 Jun 2017 11:00:56 +0000 (07:00 -0400)]
examples/passthrough_ll: added support for create()

7 years agoexample/passthrough_ll: added write support
Nikolaus Rath [Mon, 5 Jun 2017 10:57:36 +0000 (06:57 -0400)]
example/passthrough_ll: added write support

7 years agonotify_store_retrieve(): fix race on unmount
Nikolaus Rath [Wed, 31 May 2017 20:43:54 +0000 (13:43 -0700)]
notify_store_retrieve(): fix race on unmount

update_fs_loop() is still running when the filesystem unmounts,
but it that case calls to fuse_lowlevel_notify_* will fail.

Fixes: #105.
7 years agoClarify that destroy() is called without kernel connection
Nikolaus Rath [Wed, 31 May 2017 20:36:08 +0000 (13:36 -0700)]
Clarify that destroy() is called without kernel connection

7 years agoexample/notify_store_retrieve: add debugging code for issue #105.
Nikolaus Rath [Wed, 31 May 2017 19:54:19 +0000 (12:54 -0700)]
example/notify_store_retrieve: add debugging code for issue #105.

7 years agoRevert "example/passthrough.c: add debugging code for issue #157."
Nikolaus Rath [Wed, 31 May 2017 19:35:16 +0000 (12:35 -0700)]
Revert "example/passthrough.c: add debugging code for issue #157."

This reverts commit 179fa13b40387645e722089873079488f9dbe3d8.

7 years agotst_link(): wait for RELEASE request
Nikolaus Rath [Wed, 31 May 2017 16:34:40 +0000 (09:34 -0700)]
tst_link(): wait for RELEASE request

Since RELEASE requests are asynchronous, it is possible that libfuse
still considers the file to be open when userspace has closed it, so
that a successive unlink() call from userspace actually triggers
a rename(). We avoid the resulting test failure by re-trying a few
times.

Fixes: #157.
7 years agoFactored out C-based tests
Nikolaus Rath [Thu, 25 May 2017 20:22:43 +0000 (13:22 -0700)]
Factored out C-based tests

7 years agoFix typo in comment.
Nikolaus Rath [Thu, 25 May 2017 20:12:20 +0000 (13:12 -0700)]
Fix typo in comment.

7 years agoDocument RENAME_EXCHANGE and RENAME_NOREPLACE flags.
Nikolaus Rath [Thu, 25 May 2017 20:12:06 +0000 (13:12 -0700)]
Document RENAME_EXCHANGE and RENAME_NOREPLACE flags.

7 years agopassthrough_ll: document that fuse_ino_t and uintptr_t sizes must match
Nikolaus Rath [Thu, 25 May 2017 19:48:27 +0000 (12:48 -0700)]
passthrough_ll: document that fuse_ino_t and uintptr_t sizes must match

We can consider changing the code to drop the requirement if it
turns out that there's a system where this isn't given.

Fixes issue #167.

7 years agoexample/passthrough.c: add debugging code for issue #157.
Nikolaus Rath [Thu, 25 May 2017 19:26:52 +0000 (12:26 -0700)]
example/passthrough.c: add debugging code for issue #157.

7 years agotst_link(): add more assertions
Nikolaus Rath [Thu, 25 May 2017 19:15:17 +0000 (12:15 -0700)]
tst_link(): add more assertions

Hopefully this helps debugging issue #157.

7 years agoRemove fuse_fs_fgetattr and fuse_fs_ftruncate from linker script
pablomh [Tue, 23 May 2017 13:41:31 +0000 (15:41 +0200)]
Remove fuse_fs_fgetattr and fuse_fs_ftruncate from linker script

They were removed from source here: https://github.com/libfuse/libfuse/commit/73b6ff4b75cf1228ea61262c293fcb2fda5dfeea

7 years agoTravis-CI: Don't abort on first failed test
Nikolaus Rath [Wed, 24 May 2017 23:53:14 +0000 (16:53 -0700)]
Travis-CI: Don't abort on first failed test

This should help debugging issue #157.

7 years agoAdded tst_open_read()
Nikolaus Rath [Wed, 24 May 2017 23:20:04 +0000 (16:20 -0700)]
Added tst_open_read()

Slightly increases coverage of examples/passthrough_ll.c (which
supports open for reading, but not for writing).

7 years agolib/meson.build: don't crash if there's no libdl
Nikolaus Rath [Wed, 24 May 2017 23:12:41 +0000 (16:12 -0700)]
lib/meson.build: don't crash if there's no libdl

For example, FreeBSD doesn't have it.

Fixes: #173.
7 years agofuse_signals.c: use new do_nothing function instead of SIG_IGN
Nikolaus Rath [Wed, 24 May 2017 22:56:41 +0000 (15:56 -0700)]
fuse_signals.c: use new do_nothing function instead of SIG_IGN

Fixes: #160.
7 years agoReleased libfuse 3.0.2 fuse-3.0.2
Nikolaus Rath [Wed, 24 May 2017 20:56:11 +0000 (13:56 -0700)]
Released libfuse 3.0.2

7 years agoMake tests build on bsd
Brian Naylor [Wed, 24 May 2017 15:38:49 +0000 (11:38 -0400)]
Make tests build on bsd

7 years agomake buffer size match kernel max transfer size
Carlos Maiolino [Thu, 20 Apr 2017 12:53:01 +0000 (14:53 +0200)]
make buffer size match kernel max transfer size

Currently libfuse has a hardcoded buffer limit to 128kib, while fuse
kernel module has a limit up to 32 pages.

This patch changes buffer limit to match the current page size, instead
of assuming 4096 bytes pages, enabling architectures with bigger pages
to use larger buffers, improving performance.

Also, add a new macro (HEADER_SIZE) to specify the space needed to
accommodate the header, making it easier to understand why those extra
4096 bytes are needed

Signed-off-by: Carlos Maiolino <cmaiolino-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
7 years agoSet default options before parsing
Tej Chajed [Thu, 13 Apr 2017 21:23:33 +0000 (17:23 -0400)]
Set default options before parsing

7 years agoImproved documentation of fuse_context.private_data
Nikolaus Rath [Wed, 12 Apr 2017 16:33:22 +0000 (09:33 -0700)]
Improved documentation of fuse_context.private_data

In particular, don't call it "user_data" in one place and
"private_data" elsewhere.

Changing the name of the variable in the prototype should not affect
backwards compatibility.

Fixes: #155.
7 years agoReleased 3.0.1 fuse-3.0.1
Nikolaus Rath [Tue, 11 Apr 2017 00:28:41 +0000 (17:28 -0700)]
Released 3.0.1

7 years agoFix travis build script. Broken in e372d.
Nikolaus Rath [Tue, 11 Apr 2017 00:23:28 +0000 (17:23 -0700)]
Fix travis build script. Broken in e372d.

7 years agoAdded ChangeLog for commits c24cc to eb972.
Nikolaus Rath [Tue, 11 Apr 2017 00:11:30 +0000 (17:11 -0700)]
Added ChangeLog for commits c24cc to eb972.

7 years agoRemove 'tests' target in favor of calling py.test directly.
Nikolaus Rath [Tue, 11 Apr 2017 00:08:58 +0000 (17:08 -0700)]
Remove 'tests' target in favor of calling py.test directly.

Together with the previous commit, this fixes #156.

7 years agoBuild tests by default.
Nikolaus Rath [Mon, 10 Apr 2017 23:46:35 +0000 (16:46 -0700)]
Build tests by default.

7 years agoOnly build test/*.py if out of date.
Nikolaus Rath [Mon, 10 Apr 2017 23:39:01 +0000 (16:39 -0700)]
Only build test/*.py if out of date.

7 years agoActually test passthrough* examples
Nikolaus Rath [Wed, 5 Apr 2017 23:49:39 +0000 (16:49 -0700)]
Actually test passthrough* examples

Since os.path.join() interprets leading slashes, we were
actually never accessing the mountpoint and doing all the
tests in the source directory.

Fixes: #139
7 years agopassthrough: implemented create()
Nikolaus Rath [Fri, 7 Apr 2017 23:36:52 +0000 (16:36 -0700)]
passthrough: implemented create()

This allows calls like open(file, O_CREAT|O_RDONLY, 0200) which would
otherwise fail because we cannot open the file after mknod() has
created it with 0200 permissions.

7 years agoexample/passthrough: use fi->fh for read, write, fallocate
Nikolaus Rath [Fri, 7 Apr 2017 23:31:07 +0000 (16:31 -0700)]
example/passthrough: use fi->fh for read, write, fallocate

No reason not to use it. May even be a little faster and will
consume less resources :-).

7 years agopassthrough:truncate(): work on file descriptor when possible
Nikolaus Rath [Fri, 7 Apr 2017 23:27:59 +0000 (16:27 -0700)]
passthrough:truncate(): work on file descriptor when possible

This allows truncating an open file even if write permission
was removed after open() (which is the expected behavior).

7 years agoexample/passthrough: close open files in release()
Nikolaus Rath [Fri, 7 Apr 2017 23:27:33 +0000 (16:27 -0700)]
example/passthrough: close open files in release()

That way we can use the file descriptor for other operations.

7 years agopassthrough, passthrough_fh: disable attribute caching
Nikolaus Rath [Thu, 6 Apr 2017 18:47:06 +0000 (11:47 -0700)]
passthrough, passthrough_fh: disable attribute caching

Required for better hardlink handling, see comments in patch.

7 years agotest_examples(): test without debug messages first
Nikolaus Rath [Thu, 6 Apr 2017 17:15:19 +0000 (10:15 -0700)]
test_examples(): test without debug messages first

That way, we are not drowning in messages when a test would also fail
without debugging enabled.

7 years agotest_examples(): avoid false positives from fuse debug output
Nikolaus Rath [Thu, 6 Apr 2017 17:13:54 +0000 (10:13 -0700)]
test_examples(): avoid false positives from fuse debug output

7 years agopassthrough_ll: only test functions that are actually provided
Nikolaus Rath [Thu, 6 Apr 2017 05:52:54 +0000 (22:52 -0700)]
passthrough_ll: only test functions that are actually provided

This appeared to work because of an unrelated bug that caused us to
actually never access the mountpoint at all and do all tests on the
lower filesystem. This issue will be fixed in a separate commit.

7 years agoFix rst markup.
Nikolaus Rath [Thu, 6 Apr 2017 18:42:01 +0000 (11:42 -0700)]
Fix rst markup.

7 years agoDocument true meaning of the 'use_ino' option.
Nikolaus Rath [Thu, 6 Apr 2017 18:41:48 +0000 (11:41 -0700)]
Document true meaning of the 'use_ino' option.

7 years agoRemove checked_unlink()
Nikolaus Rath [Thu, 6 Apr 2017 05:51:32 +0000 (22:51 -0700)]
Remove checked_unlink()

There is no reason why so many tests require the file system
to support unlink() and/or rmdir().

7 years agoTurn tst_mknod() into tst_create()
Nikolaus Rath [Thu, 6 Apr 2017 05:50:25 +0000 (22:50 -0700)]
Turn tst_mknod() into tst_create()

Ensure that we are really creating a new file.
Don't attempt to write, we do that in tst_open_write().

7 years agoRenamed tst_write() to tst_open_write()
Nikolaus Rath [Thu, 6 Apr 2017 05:48:00 +0000 (22:48 -0700)]
Renamed tst_write() to tst_open_write()

We are actually testing both opening of an existing file
and writing to it.

7 years agoAdded tst_unlink()
Nikolaus Rath [Thu, 6 Apr 2017 05:45:31 +0000 (22:45 -0700)]
Added tst_unlink()

To check for unlink() support without requiring create()/mknod().

7 years agotst_mkdir(): factor out tst_rmdir()
Nikolaus Rath [Thu, 6 Apr 2017 05:35:37 +0000 (22:35 -0700)]
tst_mkdir(): factor out tst_rmdir()

This allows testing a filesystem that offers mkdir(), but no
rmdir() (and vice versa).

7 years agoRename tst_unlink() to tst_open_unlink()
Nikolaus Rath [Thu, 6 Apr 2017 05:32:45 +0000 (22:32 -0700)]
Rename tst_unlink() to tst_open_unlink()

This makes more sense, since we are specifically checking
unlinking of an open file.

7 years agotst_readdir(): don't require create/mkdir support
Nikolaus Rath [Thu, 6 Apr 2017 05:17:59 +0000 (22:17 -0700)]
tst_readdir(): don't require create/mkdir support

By creating the files in the lower filesystem, we
can test readdir() even for filesystems that don't implement
create() or mkdir().

7 years agopassthrough_ll: document that functionality is restricted
Nikolaus Rath [Wed, 5 Apr 2017 23:50:48 +0000 (16:50 -0700)]
passthrough_ll: document that functionality is restricted

8 years agohello.c: don't use constant instead of magic number
guraga [Tue, 28 Mar 2017 15:57:23 +0000 (22:57 +0700)]
hello.c: don't use constant instead of magic number

8 years agoDocument that -o auto_unmount implies -o nodev,nosuid
Nikolaus Rath [Thu, 16 Mar 2017 17:47:26 +0000 (10:47 -0700)]
Document that -o auto_unmount implies -o nodev,nosuid

See also issue #148.

8 years agomeson.build(): don't use absolute path for include_dir()
Nikolaus Rath [Wed, 15 Mar 2017 23:52:39 +0000 (16:52 -0700)]
meson.build(): don't use absolute path for include_dir()

No longer supported in Meson 0.39.

8 years agopassthrough_fh: declare support for . and .. lookups.
Nikolaus Rath [Wed, 15 Mar 2017 23:44:03 +0000 (16:44 -0700)]
passthrough_fh: declare support for . and .. lookups.

8 years agoopen(): fix documentation of O_TRUNC flag
Nikolaus Rath [Wed, 15 Mar 2017 23:44:35 +0000 (16:44 -0700)]
open(): fix documentation of O_TRUNC flag

The FUSE_CAP_ATOMIC_IO_TRUNC capability is enabled by default,
but we didn't update the open() documentation accordingly.

8 years agoDocument minimum required Meson version.
Nikolaus Rath [Wed, 15 Mar 2017 23:13:39 +0000 (16:13 -0700)]
Document minimum required Meson version.

Fixes #138.

8 years agoOptimize fuse_fs_read. (#145)
amosonn [Fri, 3 Mar 2017 20:44:59 +0000 (21:44 +0100)]
Optimize fuse_fs_read. (#145)

Redundant copy when only op.read is available removed.

8 years agoPut -Werror in mesonconf, not CFLAGS
Nikolaus Rath [Mon, 23 Jan 2017 20:07:09 +0000 (12:07 -0800)]
Put -Werror in mesonconf, not CFLAGS

Putting it in CFLAGS interferes with feature detection.

8 years agoPass _GNU_SOURCE as compiler argument
Nikolaus Rath [Mon, 23 Jan 2017 20:06:25 +0000 (12:06 -0800)]
Pass _GNU_SOURCE as compiler argument

Defining it in the file causes trouble because Meson sometimes
inserts includes before the first line.

8 years agoOnly use valgrind if requested explicitly + enable address sanitizer
Nikolaus Rath [Thu, 12 Jan 2017 22:26:06 +0000 (14:26 -0800)]
Only use valgrind if requested explicitly + enable address sanitizer