diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2007-01-02 15:54:14 +0100 |
---|---|---|
committer | Matthieu Herrb <matthieu@reactor.herrb.com> | 2007-01-02 15:54:14 +0100 |
commit | 1ac8c63bba9a65a706334aa98d8bdbc489cc2ab6 (patch) | |
tree | c715c745121fb2a1b380a012ad6f99f65bb4331d | |
parent | 3b71a8e000abab9106c53324a65743f0d2e3951b (diff) |
Use PACKAGE_VERSION_* macros provided by xorg-macros.
-rw-r--r-- | src/wsfb_driver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wsfb_driver.c b/src/wsfb_driver.c index 141955e..dcaa3c4 100644 --- a/src/wsfb_driver.c +++ b/src/wsfb_driver.c @@ -154,8 +154,6 @@ static int pix24bpp = 0; #define WSFB_VERSION 4000 #define WSFB_NAME "wsfb" #define WSFB_DRIVER_NAME "wsfb" -#define WSFB_MAJOR_VERSION 0 -#define WSFB_MINOR_VERSION 2 _X_EXPORT DriverRec WSFB = { WSFB_VERSION, @@ -209,7 +207,9 @@ static XF86ModuleVersionInfo WsfbVersRec = { MODINFOSTRING1, MODINFOSTRING2, XORG_VERSION_CURRENT, - WSFB_MAJOR_VERSION, WSFB_MINOR_VERSION, 0, + PACKAGE_VERSION_MAJOR, + PACKAGE_VERSION_MINOR, + PACKAGE_VERSION_PATCHLEVEL, ABI_CLASS_VIDEODRV, ABI_VIDEODRV_VERSION, NULL, |