diff options
author | Bas Nieuwenhuizen <[email protected]> | 2018-07-18 13:58:49 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2018-07-20 12:09:19 +0200 |
commit | cc10b34e9ed1104f4ceb88a49a42e1d6a743d52f (patch) | |
tree | 92a3778495fecce8eb617f5abaacf87908c96f2a /meson.build | |
parent | 8cacf38f527d42e41441ef8c25d95d4b2f4e8602 (diff) |
util/disk_cache: Fix disk_cache_get_function_timestamp with disabled cache.
radv always needs it, so just check the header instead. Also
do not declare the function if the variable is not set, so we
get a nice compile error instead of failing to open a device
at runtime.
Fixes: b87ef9e606a "util: fix MSVC build issue in disk_cache.h"
Reviewed-by: Timothy Arceri <[email protected]>
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 e05645cbf39..86a4a4ce6da 100644 --- a/meson.build +++ b/meson.build @@ -960,7 +960,7 @@ elif cc.has_header_symbol('sys/mkdev.h', 'major') pre_args += '-DMAJOR_IN_MKDEV' endif -foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h'] +foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h', 'dlfcn.h'] if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h)) pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify()) endif |