mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
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 <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
4c977f65c6
commit
00b29d7e19
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user