From: Eric Engestrom Date: Wed, 18 Oct 2017 11:06:16 +0000 (+0100) Subject: meson: move expat dependency where it's needed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2515eb63f818eb4bcbe104718c9bfb2db6f77cc5;p=mesa.git meson: move expat dependency where it's needed Suggested-by: Lionel Landwerlin Reviewed-by: Lionel Landwerlin Signed-off-by: Eric Engestrom --- diff --git a/src/intel/common/meson.build b/src/intel/common/meson.build index 6b0af929d9e..db7d74a26d2 100644 --- a/src/intel/common/meson.build +++ b/src/intel/common/meson.build @@ -40,6 +40,6 @@ libintel_common = static_library( files_libintel_common, include_directories : [inc_common, inc_intel], c_args : [c_vis_args, no_override_init_args], - dependencies : dep_libdrm, + dependencies : [dep_expat, dep_libdrm], build_by_default : false, ) diff --git a/src/intel/tools/meson.build b/src/intel/tools/meson.build index 91092fdb512..1996d5208f0 100644 --- a/src/intel/tools/meson.build +++ b/src/intel/tools/meson.build @@ -31,7 +31,7 @@ aubinator = executable( aubinator_error_decode = executable( 'aubinator_error_decode', files('aubinator_error_decode.c', 'disasm.c', 'gen_disasm.h'), - dependencies : [dep_expat, dep_zlib, dep_thread], + dependencies : [dep_zlib, dep_thread], include_directories : [inc_common, inc_intel], link_with : [libintel_common, libintel_compiler, libmesa_util], c_args : [c_vis_args, no_override_init_args],