From bbd4a54e39686a946838f5317d141d2006eaaa70 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 22 Jul 2025 18:54:35 +0200 Subject: [PATCH] xfree86: drivers: apm: define versions directly Since we're in-tree now, we don't have the autoconf-generated symbols PACKAGE_VERSION_* anymore, so define them directly. The driver's version number became pretty meaningless now anyways. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/drivers/video/apm/src/apm_driver.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/drivers/video/apm/src/apm_driver.c b/hw/xfree86/drivers/video/apm/src/apm_driver.c index 7f7b59b06..336cfb51a 100644 --- a/hw/xfree86/drivers/video/apm/src/apm_driver.c +++ b/hw/xfree86/drivers/video/apm/src/apm_driver.c @@ -12,9 +12,9 @@ #define APM_VERSION 4000 #define APM_NAME "APM" #define APM_DRIVER_NAME "apm" -#define APM_MAJOR_VERSION PACKAGE_VERSION_MAJOR -#define APM_MINOR_VERSION PACKAGE_VERSION_MINOR -#define APM_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL +#define APM_MAJOR_VERSION 1 +#define APM_MINOR_VERSION 0 +#define APM_PATCHLEVEL 1 #define PCI_VENDOR_ALLIANCE 0x1142 #define PCI_CHIP_AP6422 0x6422