summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrice Goglin <bgoglin@debian.org>2007-08-07 11:30:22 +0200
committerBrice Goglin <bgoglin@debian.org>2007-08-07 11:30:22 +0200
commiteb95b50f8b73503789625016992d7126de103eb9 (patch)
tree8801c8d81866ac74fc9020813badc0421fbb2751
parent57d4e87ad92babb9886fcf6096ddc550df5cf024 (diff)
VERSION* using PACKAGE_VERSION_*
-rw-r--r--src/imstt_driver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/imstt_driver.c b/src/imstt_driver.c
index 186b97f..1dfa30d 100644
--- a/src/imstt_driver.c
+++ b/src/imstt_driver.c
@@ -99,10 +99,10 @@ static void IMSTTSetClock(ScrnInfoPtr pScrn, unsigned long mhz);
static void IMSTTWriteMode(ScrnInfoPtr pScrn);
#define DRIVER_NAME "imstt"
-#define DRIVER_VERSION "1.1.0"
-#define VERSION_MAJOR 1
-#define VERSION_MINOR 1
-#define PATCHLEVEL 0
+#define DRIVER_VERSION PACKAGE_VERSION
+#define VERSION_MAJOR PACKAGE_VERSION_MAJOR
+#define VERSION_MINOR PACKAGE_VERSION_MINOR
+#define PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL
#define IMSTT_VERSION ((VERSION_MAJOR << 24) | \
(VERSION_MINOR << 16) | \
PATCHLEVEL)