diff options
author | Brice Goglin <bgoglin@debian.org> | 2007-08-07 10:26:40 +0200 |
---|---|---|
committer | Brice Goglin <bgoglin@debian.org> | 2007-08-07 10:26:40 +0200 |
commit | 6d114041dc22763aa89ef6a4f4af3246de3e3b1b (patch) | |
tree | 74cf362e2ca2760e29dee3f5074dfc56e8fcf62f /src | |
parent | 6438659655d3cc23e39be9c0c9673c3247282997 (diff) |
Define CIR_*_VERSION* using PACKAGE_VERSION_*
Diffstat (limited to 'src')
-rw-r--r-- | src/cir_driver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cir_driver.c b/src/cir_driver.c index 3244c10..648b6c3 100644 --- a/src/cir_driver.c +++ b/src/cir_driver.c @@ -53,9 +53,9 @@ static Bool alp_loaded = FALSE; #define CIR_VERSION 4000 #define CIR_NAME "CIRRUS" #define CIR_DRIVER_NAME "cirrus" -#define CIR_MAJOR_VERSION 1 -#define CIR_MINOR_VERSION 1 -#define CIR_PATCHLEVEL 0 +#define CIR_MAJOR_VERSION PACKAGE_VERSION_MAJOR +#define CIR_MINOR_VERSION PACKAGE_VERSION_MINOR +#define CIR_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL /* * This contains the functions needed by the server after loading the |