From: Seunghun Lee Date: Tue, 29 Apr 2025 07:57:01 +0000 (+0900) Subject: build: Remove `wayland-tbm` option X-Git-Tag: accepted/tizen/unified/20250612.024607~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F63%2F325363%2F1;p=platform%2Fupstream%2Fenlightenment.git build: Remove `wayland-tbm` option This option is essential. Change-Id: I2dea9af9cdc37f6b8ab47ca3c72dbb354235f856 --- diff --git a/meson.build b/meson.build index 311e9844c8..d48313fbc6 100644 --- a/meson.build +++ b/meson.build @@ -177,13 +177,9 @@ deps_wayland = [ dependency('wtz-blender-server', required: true), dependency('libdrm', required: true), dependency('wtz-video-shell-server', required: true), + dependency('wayland-tbm-server', required: true) ] -if get_option('wayland-tbm') - deps_wayland += dependency('wayland-tbm-server', required: true) - config_h.set('HAVE_WAYLAND_TBM', '1') -endif - if get_option('hwc') deps_wayland += dependency('gbm', required: true) config_h.set('HAVE_HWC', '1') diff --git a/meson_options.txt b/meson_options.txt index cbf7d7e38f..04c7113dae 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,3 @@ -option('wayland-tbm', type: 'boolean', value: true, description: 'enable wayland TBM support: (default=true)') option('hwc', type: 'boolean', value: true, description: 'enable HWC support: (default=true)') option('systemd', type: 'boolean', value: true, description: 'enable systemd support: (default=true)') option('function-trace', type: 'boolean', value: false, description: 'enable function trace: (default=false)')