From 00b29d7e19d4dec663d5c05947fd9ac0f188d0b1 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 22 Jul 2025 19:15:18 +0200 Subject: [PATCH] xfree86: drivers: ast: 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/ast/src/ast.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/drivers/video/ast/src/ast.h b/hw/xfree86/drivers/video/ast/src/ast.h index 94f3eb05f..5b7b59d96 100644 --- a/hw/xfree86/drivers/video/ast/src/ast.h +++ b/hw/xfree86/drivers/video/ast/src/ast.h @@ -80,9 +80,9 @@ typedef enum _TX_CHIPTYPE { /* AST REC Info */ #define AST_NAME "AST" #define AST_DRIVER_NAME "ast" -#define AST_MAJOR_VERSION PACKAGE_VERSION_MAJOR -#define AST_MINOR_VERSION PACKAGE_VERSION_MINOR -#define AST_PATCH_VERSION PACKAGE_VERSION_PATCHLEVEL +#define AST_MAJOR_VERSION 1 +#define AST_MINOR_VERSION 2 +#define AST_PATCH_VERSION 0 #define AST_VERSION \ ((AST_MAJOR_VERSION << 20) | (AST_MINOR_VERSION << 10) | AST_PATCH_VERSION)