From 05f061aabcce0c7fbfe60f6cf42d2844f6772a84 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Mon, 23 Jun 2025 22:42:25 -0500 Subject: [PATCH] Add compatibility define for `pci_device_is_boot_display()` It will take some time for a new libpciaccess to be released and even then bumping the dependency for libpciaccess isn't attractive. If an older libpciaccess is used just add a static inline define. --- hw/xfree86/common/xf86platformBus.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hw/xfree86/common/xf86platformBus.h b/hw/xfree86/common/xf86platformBus.h index 7d4852ee8..f752795c8 100644 --- a/hw/xfree86/common/xf86platformBus.h +++ b/hw/xfree86/common/xf86platformBus.h @@ -136,4 +136,11 @@ static inline void xf86MergeOutputClassOptions(int index, void **options) {} #endif +#ifndef pci_device_is_boot_display +static inline Bool pci_device_is_boot_display(struct pci_device *dev) +{ + return FALSE; +} +#endif + #endif