gbm: depend on libdrm indepedent of dri2 setting

Suggested-by: @stefan11111
Cc: mesa-stable
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/10585
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30716>
This commit is contained in:
Tapani Pälli
2024-08-19 07:48:12 +03:00
committed by Marge Bot
parent 679477d83b
commit 35a6824e88
+1 -2
View File
@@ -24,7 +24,6 @@ incs_gbm += inc_mesa
if with_dri2
files_gbm += files('backends/dri/gbm_dri.c', 'backends/dri/gbm_driint.h')
deps_gbm += dep_libdrm # TODO: pthread-stubs
endif
if with_platform_wayland
deps_gbm += dep_wayland_server
@@ -44,7 +43,7 @@ libgbm = shared_library(
c_args : [args_gbm],
link_args : [ld_args_gc_sections],
link_with : [libloader, libgallium_dri],
dependencies : [deps_gbm, dep_dl, dep_thread, idep_mesautil, idep_xmlconfig],
dependencies : [deps_gbm, dep_dl, dep_thread, dep_libdrm, idep_mesautil, idep_xmlconfig],
gnu_symbol_visibility : 'hidden',
version : '1.0.0',
install : true,