blob: 2dbca74573d2b4b62beea95bc2d56e2eb898bafe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* A simple program to make it possible to print the XFree86 version and
* date info as defined in xf86Version.h and xf86Date.h very early in the
* build process.
*/
/* $XFree86: xc/config/util/printver.c,v 1.2 2003/02/26 09:21:33 dawes Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include "xf86Version.h"
#include "xf86Date.h"
int
main()
{
#ifdef XF86_VERSION_MAJOR
printf(" version %d.%d.%d", XF86_VERSION_MAJOR, XF86_VERSION_MINOR,
XF86_VERSION_PATCH);
if (XF86_VERSION_SNAP != 0)
printf(".%d", XF86_VERSION_SNAP);
#ifdef XF86_DATE
printf(" (%s)", XF86_DATE);
#endif
#endif
exit(0);
}
|