aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-02-13 13:48:00 -0500
committerDavid Robillard <d@drobilla.net>2023-02-13 13:48:00 -0500
commit61d53637dc62d15f9b3d1fa9e69891313c465c35 (patch)
tree923ae1871c2f475da3cbf0be4be86b42450095dc
parent39b2eaebb6639fcb9c291099a0681bf9ea9aac3b (diff)
downloadserd-61d53637dc62d15f9b3d1fa9e69891313c465c35.tar.gz
serd-61d53637dc62d15f9b3d1fa9e69891313c465c35.tar.bz2
serd-61d53637dc62d15f9b3d1fa9e69891313c465c35.zip
Fix check for posix_fadvise
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ddef9fe2..7fadf872 100644
--- a/meson.build
+++ b/meson.build
@@ -81,7 +81,7 @@ else
endif
if cc.links(
template.format('fcntl.h',
- 'posix_fadvise(0, 0, 4096, POSIX_FADV_SEQUENTIAL))'),
+ 'posix_fadvise(0, 0, 4096, POSIX_FADV_SEQUENTIAL)'),
args: system_c_args,
name: 'posix_fadvise')
platform_c_args += ['-DHAVE_POSIX_FADVISE']