diff options
author | David Robillard <d@drobilla.net> | 2023-02-13 13:48:00 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-02-13 13:48:00 -0500 |
commit | 61d53637dc62d15f9b3d1fa9e69891313c465c35 (patch) | |
tree | 923ae1871c2f475da3cbf0be4be86b42450095dc /meson.build | |
parent | 39b2eaebb6639fcb9c291099a0681bf9ea9aac3b (diff) | |
download | serd-61d53637dc62d15f9b3d1fa9e69891313c465c35.tar.gz serd-61d53637dc62d15f9b3d1fa9e69891313c465c35.tar.bz2 serd-61d53637dc62d15f9b3d1fa9e69891313c465c35.zip |
Fix check for posix_fadvise
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
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'] |