From 09545cb2bbc73bcb24a274a1d2e5224eea98976f Mon Sep 17 00:00:00 2001 From: SolDev69 <40839581+SolDev69@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:22:36 +0000 Subject: [PATCH] remove kmsro dependency I have no clue if this is needed --- .github/workflows/pojav-gallium.yml | 2 +- src/gallium/targets/osmesa/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pojav-gallium.yml b/.github/workflows/pojav-gallium.yml index 75dc10988bf..1db2bad6c82 100644 --- a/.github/workflows/pojav-gallium.yml +++ b/.github/workflows/pojav-gallium.yml @@ -59,7 +59,7 @@ jobs: -Dopengl=true \ -Dosmesa=true \ -Dvulkan-drivers= \ - -Dgallium-drivers=freedreno,zink,swrast,panfrost,kmsro \ + -Dgallium-drivers=freedreno,zink,swrast,panfrost \ -Dfreedreno-kmds=kgsl \ -Dshared-glapi=false \ -Dbuildtype=release diff --git a/src/gallium/targets/osmesa/meson.build b/src/gallium/targets/osmesa/meson.build index f4b7a8efaf4..1bd6972d601 100644 --- a/src/gallium/targets/osmesa/meson.build +++ b/src/gallium/targets/osmesa/meson.build @@ -55,7 +55,7 @@ libosmesa = shared_library( libmesa, libgallium, libws_null, osmesa_link_with, ], dependencies : [ - dep_ws2_32, dep_selinux, dep_thread, dep_clock, dep_unwind, driver_freedreno, dep_libdrm, driver_zink, driver_swrast, driver_panfrost, driver_kmsro + dep_ws2_32, dep_selinux, dep_thread, dep_clock, dep_unwind, driver_freedreno, dep_libdrm, driver_zink, driver_swrast, driver_panfrost ], name_prefix : host_machine.system() == 'windows' ? '' : [], # otherwise mingw will create libosmesa.dll soversion : '',