diff options
author | Kevin E Martin <kem@kem.org> | 2004-08-10 21:37:35 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2004-08-10 21:37:35 +0000 |
commit | 81881b96861d707b0729e0146a4b53b3dd234885 (patch) | |
tree | a38820c0be56da105ba8c3c4e0658c76854c51cb | |
parent | 21c7c8cdc7d2f607177634601cef8b0290fb0e80 (diff) |
Update version to 6.7.99.1 and fix problem with snapshot string generation.XORG-6_7_99_1
-rw-r--r-- | hw/xfree86/common/xf86Init.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index f5c6964f6..dcb132dbd 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -1764,7 +1764,7 @@ xf86PrintBanner() "repository hosted at http://www.freedesktop.org/Software/xorg/"); #endif #if XORG_VERSION_SNAP > 0 - ErrorF(".%d", XF86_VERSION_SNAP); + ErrorF(".%d", XORG_VERSION_SNAP); #endif #if XORG_VERSION_SNAP >= 900 @@ -1773,9 +1773,12 @@ xf86PrintBanner() #endif #ifdef XORG_CUSTOM_VERSION - ErrorF(" (%s)", XF86_CUSTOM_VERSION); + ErrorF(" (%s)", XORG_CUSTOM_VERSION); #endif - ErrorF("\nRelease Date: %s\n", XF86_DATE); +#ifndef XORG_DATE +#define XORG_DATE XF86_DATE +#endif + ErrorF("\nRelease Date: %s\n", XORG_DATE); ErrorF("X Protocol Version %d, Revision %d, %s\n", X_PROTOCOL, X_PROTOCOL_REVISION, XORG_RELEASE ); ErrorF("Build Operating System:%s%s\n", OSNAME, OSVENDOR); |