[mutter/bilelmoussaoui/meson-without-x11] Meson: Move x11 sources and dependencies
- From: Bilal Elmoussaoui <bilelmoussaoui src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/bilelmoussaoui/meson-without-x11] Meson: Move x11 sources and dependencies
- Date: Fri, 1 Apr 2022 08:11:07 +0000 (UTC)
commit 35233fd1e3fd879328444e80e4afebfba0895f70
Author: Bilal Elmoussaoui <belmouss redhat com>
Date: Fri Mar 25 11:50:52 2022 +0100
Meson: Move x11 sources and dependencies
This will make switching have_x11 to false test properly whether
we can build mutter without the x11 backend or not yet.
meson.build | 55 +++++++------
src/meson.build | 222 ++++++++++++++++++++++++++------------------------
src/tests/meson.build | 28 ++++---
3 files changed, 161 insertions(+), 144 deletions(-)
---
diff --git a/meson.build b/meson.build
index 6ef7bde92e..8fd081df82 100644
--- a/meson.build
+++ b/meson.build
@@ -101,7 +101,6 @@ mutter_installed_tests_libexecdir = join_paths(
libexecdir, 'installed-tests', libmutter_name)
m_dep = cc.find_library('m', required: true)
-x11_dep = dependency('x11')
graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req)
gtk3_dep = dependency('gtk+-3.0', version: gtk3_req)
gdk_pixbuf_dep = dependency('gdk-pixbuf-2.0')
@@ -120,24 +119,7 @@ gthread_dep = dependency('gobject-2.0', version: glib_req)
gmodule_no_export_dep = dependency('gmodule-no-export-2.0', version: glib_req)
gnome_settings_daemon_dep = dependency('gnome-settings-daemon')
json_glib_dep = dependency('json-glib-1.0', version: json_glib_req)
-xcomposite_dep = dependency('xcomposite', version: xcomposite_req)
-xcursor_dep = dependency('xcursor')
-xdamage_dep = dependency('xdamage')
-xext_dep = dependency('xext')
-xfixes_dep = dependency('xfixes', version: xfixes_req)
-xi_dep = dependency('xi', version: xi_req)
-xtst_dep = dependency('xtst')
-xkbfile_dep = dependency('xkbfile')
-xkeyboard_config_dep = dependency('xkeyboard-config')
xkbcommon_dep = dependency('xkbcommon', version: xkbcommon_req)
-xkbcommon_x11_dep = dependency('xkbcommon-x11')
-xrender_dep = dependency('xrender')
-x11_xcb_dep = dependency('x11-xcb')
-xrandr_dep = dependency('xrandr', version: xrandr_req)
-xcb_randr_dep = dependency('xcb-randr')
-xcb_res_dep = dependency('xcb-res')
-xinerama_dep = dependency('xinerama')
-xau_dep = dependency('xau')
ice_dep = dependency('ice')
atk_dep = dependency('atk', version: atk_req)
libcanberra_dep = dependency('libcanberra', version: libcanberra_req)
@@ -145,6 +127,26 @@ dbus_dep = dependency('dbus-1')
# For now always require X11 support
have_x11 = true
+if have_x11
+ x11_dep = dependency('x11')
+ xcomposite_dep = dependency('xcomposite', version: xcomposite_req)
+ xcursor_dep = dependency('xcursor')
+ xdamage_dep = dependency('xdamage')
+ xext_dep = dependency('xext')
+ xfixes_dep = dependency('xfixes', version: xfixes_req)
+ xi_dep = dependency('xi', version: xi_req)
+ xtst_dep = dependency('xtst')
+ xkbfile_dep = dependency('xkbfile')
+ xkeyboard_config_dep = dependency('xkeyboard-config')
+ xkbcommon_x11_dep = dependency('xkbcommon-x11')
+ xrender_dep = dependency('xrender')
+ x11_xcb_dep = dependency('x11-xcb')
+ xrandr_dep = dependency('xrandr', version: xrandr_req)
+ xcb_randr_dep = dependency('xcb-randr')
+ xcb_res_dep = dependency('xcb-res')
+ xinerama_dep = dependency('xinerama')
+ xau_dep = dependency('xau')
+endif
have_gnome_desktop = get_option('libgnome_desktop')
@@ -468,8 +470,10 @@ cdata.set('HAVE_STARTUP_NOTIFICATION', have_startup_notification)
cdata.set('HAVE_INTROSPECTION', have_introspection)
cdata.set('HAVE_PROFILER', have_profiler)
-xkb_base = xkeyboard_config_dep.get_pkgconfig_variable('xkb_base')
-cdata.set_quoted('XKB_BASE', xkb_base)
+if have_x11
+ xkb_base = xkeyboard_config_dep.get_pkgconfig_variable('xkb_base')
+ cdata.set_quoted('XKB_BASE', xkb_base)
+endif
if cc.has_header_symbol('sys/prctl.h', 'prctl')
cdata.set('HAVE_SYS_PRCTL', 1)
@@ -542,10 +546,12 @@ if have_wayland
endif
have_xsetioerrorexithandler = false
-if cc.has_function('XSetIOErrorExitHandler', dependencies: x11_dep,
- prefix: '''#include <X11/Xlib.h>''')
- have_xsetioerrorexithandler = true
- cdata.set('HAVE_XSETIOERROREXITHANDLER', 1)
+if have_x11
+ if cc.has_function('XSetIOErrorExitHandler', dependencies: x11_dep,
+ prefix: '''#include <X11/Xlib.h>''')
+ have_xsetioerrorexithandler = true
+ cdata.set('HAVE_XSETIOERROREXITHANDLER', 1)
+ endif
endif
optional_functions = [
@@ -606,6 +612,7 @@ summary('GLX', have_glx, section: 'Rendering APIs')
summary('Wayland', have_wayland, section: 'Options')
summary('Wayland EGLStream', have_wayland_eglstream, section: 'Options')
+summary('X11', have_x11, section: 'Options')
summary('Native Backend', have_native_backend, section: 'Options')
summary('EGL Device', have_egl_device, section: 'Options')
summary('Remote desktop', have_remote_desktop, section: 'Options')
diff --git a/src/meson.build b/src/meson.build
index 7b456f524f..5741eb9471 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -253,58 +253,6 @@ mutter_sources = [
'backends/meta-viewport-info.h',
'backends/meta-virtual-monitor.c',
'backends/meta-virtual-monitor.h',
- 'backends/x11/cm/meta-backend-x11-cm.c',
- 'backends/x11/cm/meta-backend-x11-cm.h',
- 'backends/x11/cm/meta-cursor-sprite-xfixes.c',
- 'backends/x11/cm/meta-cursor-sprite-xfixes.h',
- 'backends/x11/cm/meta-renderer-x11-cm.c',
- 'backends/x11/cm/meta-renderer-x11-cm.h',
- 'backends/x11/meta-backend-x11.c',
- 'backends/x11/meta-backend-x11.h',
- 'backends/x11/meta-barrier-x11.c',
- 'backends/x11/meta-barrier-x11.h',
- 'backends/x11/meta-clutter-backend-x11.c',
- 'backends/x11/meta-clutter-backend-x11.h',
- 'backends/x11/meta-crtc-xrandr.c',
- 'backends/x11/meta-crtc-xrandr.h',
- 'backends/x11/meta-cursor-renderer-x11.c',
- 'backends/x11/meta-cursor-renderer-x11.h',
- 'backends/x11/meta-cursor-tracker-x11.c',
- 'backends/x11/meta-cursor-tracker-x11.h',
- 'backends/x11/meta-event-x11.c',
- 'backends/x11/meta-event-x11.h',
- 'backends/x11/meta-gpu-xrandr.c',
- 'backends/x11/meta-gpu-xrandr.h',
- 'backends/x11/meta-input-device-x11.c',
- 'backends/x11/meta-input-device-x11.h',
- 'backends/x11/meta-input-device-tool-x11.c',
- 'backends/x11/meta-input-device-tool-x11.h',
- 'backends/x11/meta-input-settings-x11.c',
- 'backends/x11/meta-input-settings-x11.h',
- 'backends/x11/meta-seat-x11.c',
- 'backends/x11/meta-seat-x11.h',
- 'backends/x11/meta-keymap-x11.c',
- 'backends/x11/meta-keymap-x11.h',
- 'backends/x11/meta-monitor-manager-xrandr.c',
- 'backends/x11/meta-monitor-manager-xrandr.h',
- 'backends/x11/meta-output-xrandr.c',
- 'backends/x11/meta-output-xrandr.h',
- 'backends/x11/meta-renderer-x11.c',
- 'backends/x11/meta-renderer-x11.h',
- 'backends/x11/meta-stage-x11.c',
- 'backends/x11/meta-stage-x11.h',
- 'backends/x11/meta-virtual-input-device-x11.c',
- 'backends/x11/meta-virtual-input-device-x11.h',
- 'backends/x11/meta-xkb-a11y-x11.c',
- 'backends/x11/meta-xkb-a11y-x11.h',
- 'backends/x11/nested/meta-backend-x11-nested.c',
- 'backends/x11/nested/meta-backend-x11-nested.h',
- 'backends/x11/nested/meta-cursor-renderer-x11-nested.c',
- 'backends/x11/nested/meta-cursor-renderer-x11-nested.h',
- 'backends/x11/nested/meta-stage-x11-nested.c',
- 'backends/x11/nested/meta-stage-x11-nested.h',
- 'backends/x11/nested/meta-renderer-x11-nested.c',
- 'backends/x11/nested/meta-renderer-x11-nested.h',
'compositor/clutter-utils.c',
'compositor/clutter-utils.h',
'compositor/cogl-utils.c',
@@ -321,8 +269,6 @@ mutter_sources = [
'compositor/meta-background-private.h',
'compositor/meta-compositor-server.c',
'compositor/meta-compositor-server.h',
- 'compositor/meta-compositor-x11.c',
- 'compositor/meta-compositor-x11.h',
'compositor/meta-cullable.c',
'compositor/meta-cullable.h',
'compositor/meta-dnd-actor.c',
@@ -349,8 +295,6 @@ mutter_sources = [
'compositor/meta-texture-tower.h',
'compositor/meta-window-actor.c',
'compositor/meta-window-actor-private.h',
- 'compositor/meta-window-actor-x11.c',
- 'compositor/meta-window-actor-x11.h',
'compositor/meta-window-group.c',
'compositor/meta-window-group-private.h',
'compositor/meta-window-shape.c',
@@ -427,44 +371,106 @@ mutter_sources = [
'ui/theme-private.h',
'ui/ui.c',
'ui/ui.h',
- 'x11/atomnames.h',
- 'x11/events.c',
- 'x11/events.h',
- 'x11/group.c',
- 'x11/group-private.h',
- 'x11/group-props.c',
- 'x11/group-props.h',
- 'x11/iconcache.c',
- 'x11/iconcache.h',
- 'x11/meta-selection-source-x11.c',
- 'x11/meta-selection-source-x11-private.h',
- 'x11/meta-startup-notification-x11.c',
- 'x11/meta-startup-notification-x11.h',
- 'x11/meta-x11-display.c',
- 'x11/meta-x11-display-private.h',
- 'x11/meta-x11-errors.c',
- 'x11/meta-x11-selection.c',
- 'x11/meta-x11-selection-private.h',
- 'x11/meta-x11-selection-input-stream.c',
- 'x11/meta-x11-selection-input-stream-private.h',
- 'x11/meta-x11-selection-output-stream.c',
- 'x11/meta-x11-selection-output-stream-private.h',
- 'x11/meta-x11-stack.c',
- 'x11/meta-x11-stack-private.h',
- 'x11/meta-x11-window-control.c',
- 'x11/meta-x11-window-control.h',
- 'x11/mutter-Xatomtype.h',
- 'x11/session.c',
- 'x11/session.h',
- 'x11/window-props.c',
- 'x11/window-props.h',
- 'x11/window-x11.c',
- 'x11/window-x11.h',
- 'x11/window-x11-private.h',
- 'x11/xprops.c',
- 'x11/xprops.h',
]
+if have_x11
+ mutter_sources += [
+ 'backends/x11/cm/meta-backend-x11-cm.c',
+ 'backends/x11/cm/meta-backend-x11-cm.h',
+ 'backends/x11/cm/meta-cursor-sprite-xfixes.c',
+ 'backends/x11/cm/meta-cursor-sprite-xfixes.h',
+ 'backends/x11/cm/meta-renderer-x11-cm.c',
+ 'backends/x11/cm/meta-renderer-x11-cm.h',
+ 'backends/x11/meta-backend-x11.c',
+ 'backends/x11/meta-backend-x11.h',
+ 'backends/x11/meta-barrier-x11.c',
+ 'backends/x11/meta-barrier-x11.h',
+ 'backends/x11/meta-clutter-backend-x11.c',
+ 'backends/x11/meta-clutter-backend-x11.h',
+ 'backends/x11/meta-crtc-xrandr.c',
+ 'backends/x11/meta-crtc-xrandr.h',
+ 'backends/x11/meta-cursor-renderer-x11.c',
+ 'backends/x11/meta-cursor-renderer-x11.h',
+ 'backends/x11/meta-cursor-tracker-x11.c',
+ 'backends/x11/meta-cursor-tracker-x11.h',
+ 'backends/x11/meta-event-x11.c',
+ 'backends/x11/meta-event-x11.h',
+ 'backends/x11/meta-gpu-xrandr.c',
+ 'backends/x11/meta-gpu-xrandr.h',
+ 'backends/x11/meta-input-device-x11.c',
+ 'backends/x11/meta-input-device-x11.h',
+ 'backends/x11/meta-input-device-tool-x11.c',
+ 'backends/x11/meta-input-device-tool-x11.h',
+ 'backends/x11/meta-input-settings-x11.c',
+ 'backends/x11/meta-input-settings-x11.h',
+ 'backends/x11/meta-seat-x11.c',
+ 'backends/x11/meta-seat-x11.h',
+ 'backends/x11/meta-keymap-x11.c',
+ 'backends/x11/meta-keymap-x11.h',
+ 'backends/x11/meta-monitor-manager-xrandr.c',
+ 'backends/x11/meta-monitor-manager-xrandr.h',
+ 'backends/x11/meta-output-xrandr.c',
+ 'backends/x11/meta-output-xrandr.h',
+ 'backends/x11/meta-renderer-x11.c',
+ 'backends/x11/meta-renderer-x11.h',
+ 'backends/x11/meta-stage-x11.c',
+ 'backends/x11/meta-stage-x11.h',
+ 'backends/x11/meta-virtual-input-device-x11.c',
+ 'backends/x11/meta-virtual-input-device-x11.h',
+ 'backends/x11/meta-xkb-a11y-x11.c',
+ 'backends/x11/meta-xkb-a11y-x11.h',
+ 'backends/x11/nested/meta-backend-x11-nested.c',
+ 'backends/x11/nested/meta-backend-x11-nested.h',
+ 'backends/x11/nested/meta-cursor-renderer-x11-nested.c',
+ 'backends/x11/nested/meta-cursor-renderer-x11-nested.h',
+ 'backends/x11/nested/meta-stage-x11-nested.c',
+ 'backends/x11/nested/meta-stage-x11-nested.h',
+ 'backends/x11/nested/meta-renderer-x11-nested.c',
+ 'backends/x11/nested/meta-renderer-x11-nested.h',
+ 'compositor/meta-compositor-x11.c',
+ 'compositor/meta-compositor-x11.h',
+ 'compositor/meta-window-actor-x11.c',
+ 'compositor/meta-window-actor-x11.h',
+ 'x11/atomnames.h',
+ 'x11/events.c',
+ 'x11/events.h',
+ 'x11/group.c',
+ 'x11/group-private.h',
+ 'x11/group-props.c',
+ 'x11/group-props.h',
+ 'x11/iconcache.c',
+ 'x11/iconcache.h',
+ 'x11/meta-selection-source-x11.c',
+ 'x11/meta-selection-source-x11-private.h',
+ 'x11/meta-startup-notification-x11.c',
+ 'x11/meta-startup-notification-x11.h',
+ 'x11/meta-x11-display.c',
+ 'x11/meta-x11-display-private.h',
+ 'x11/meta-x11-errors.c',
+ 'x11/meta-x11-selection.c',
+ 'x11/meta-x11-selection-private.h',
+ 'x11/meta-x11-selection-input-stream.c',
+ 'x11/meta-x11-selection-input-stream-private.h',
+ 'x11/meta-x11-selection-output-stream.c',
+ 'x11/meta-x11-selection-output-stream-private.h',
+ 'x11/meta-x11-stack.c',
+ 'x11/meta-x11-stack-private.h',
+ 'x11/meta-x11-window-control.c',
+ 'x11/meta-x11-window-control.h',
+ 'x11/mutter-Xatomtype.h',
+ 'x11/session.c',
+ 'x11/session.h',
+ 'x11/window-props.c',
+ 'x11/window-props.h',
+ 'x11/window-x11.c',
+ 'x11/window-x11.h',
+ 'x11/window-x11-private.h',
+ 'x11/xprops.c',
+ 'x11/xprops.h',
+ ]
+endif
+
+
if have_egl_device
mutter_sources += [
'backends/native/meta-render-device-egl-stream.c',
@@ -1055,21 +1061,23 @@ executable('mutter',
install: true,
)
-executable('mutter-restart-helper',
- sources: [
- files('core/restart-helper.c'),
- ],
- include_directories: [
- top_includepath,
- ],
- c_args: mutter_c_args,
- dependencies: [
- x11_dep,
- xcomposite_dep,
- ],
- install_dir: libexecdir,
- install: true,
-)
+if have_x11
+ executable('mutter-restart-helper',
+ sources: [
+ files('core/restart-helper.c'),
+ ],
+ include_directories: [
+ top_includepath,
+ ],
+ c_args: mutter_c_args,
+ dependencies: [
+ x11_dep,
+ xcomposite_dep,
+ ],
+ install_dir: libexecdir,
+ install: true,
+ )
+endif
if have_introspection
mutter_introspected_sources = []
diff --git a/src/tests/meson.build b/src/tests/meson.build
index a19703288a..1cf7dfd682 100644
--- a/src/tests/meson.build
+++ b/src/tests/meson.build
@@ -94,19 +94,21 @@ test_env.set('G_TEST_SRCDIR', join_paths(mutter_srcdir, 'src'))
test_env.set('G_TEST_BUILDDIR', mutter_builddir)
test_env.set('MUTTER_TEST_PLUGIN_PATH', '@0@'.format(default_plugin.full_path()))
-test_client = executable('mutter-test-client',
- sources: ['test-client.c'],
- include_directories: tests_includes,
- c_args: tests_c_args,
- dependencies: [
- gtk3_dep,
- gio_unix_dep,
- x11_dep,
- xext_dep,
- ],
- install: have_installed_tests,
- install_dir: mutter_installed_tests_libexecdir,
-)
+if have_x11
+ test_client = executable('mutter-test-client',
+ sources: ['test-client.c'],
+ include_directories: tests_includes,
+ c_args: tests_c_args,
+ dependencies: [
+ gtk3_dep,
+ gio_unix_dep,
+ x11_dep,
+ xext_dep,
+ ],
+ install: have_installed_tests,
+ install_dir: mutter_installed_tests_libexecdir,
+ )
+endif
test_runner = executable('mutter-test-runner',
sources: [
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]