diff options
author | Eric Engestrom <[email protected]> | 2018-11-23 17:04:25 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-06-21 11:35:39 +0000 |
commit | 6a9dd62882b9e2b57394a192cc66e886128df026 (patch) | |
tree | 26cd400d6690085a87adc0c14e25d4fb9bd85230 /meson.build | |
parent | 1cbe2ad39442a48b96fff40a3a30c74ac5e4e4e6 (diff) |
drisw: move build logic to build systems
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Eric Anholt <[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 28689857dc3..d8a48bd6994 100644 --- a/meson.build +++ b/meson.build @@ -1036,7 +1036,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', 'dlfcn.h', 'execinfo.h'] +foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h', 'dlfcn.h', 'execinfo.h', 'sys/shm.h'] if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h)) pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify()) endif |