/*
* 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);
}
-
Reinhard Tartler authored
Summary: Imported nx-X11-3.1.0-1.tar.gz Keywords: Imported nx-X11-3.1.0-1.tar.gz into Git repository
f4092abd