diff --git a/hw/xfree86/os-support/meson.build b/hw/xfree86/os-support/meson.build index 0e021dbe1..fb282be82 100644 --- a/hw/xfree86/os-support/meson.build +++ b/hw/xfree86/os-support/meson.build @@ -85,10 +85,17 @@ elif host_machine.system().endswith('bsd') 'bsd/bsd_VTsw.c', 'bsd/bsd_bell.c', 'bsd/bsd_init.c', - 'shared/pm_noop.c', ] - # XXX: APM + if cc.has_header('machine/apmvar.h') + if cc.has_header('sys/event.h') + srcs_xorg_os_support += 'bsd/bsd_kqueue_apm.c' + else + srcs_xorg_os_support += 'bsd/bsd_apm.c' + endif + else + srcs_xorg_os_support += 'shared/pm_noop.c' + endif if host_machine.cpu_family() == 'x86_64' srcs_xorg_os_support += 'bsd/i386_video.c'