Subject: Re: Confirm version level of XFree410
To: Frederick Bruckman <fredb@immanent.net>
From: Matthieu Herrb <matthieu.herrb@laas.fr>
List: tech-x11
Date: 08/12/2001 19:05:52
You wrote (in your message from Sunday 12)
>
> My guess: parse that as 4|01|00|00. Therefore, 4.0.1 would have been
> 4000100.
>
That's it .From xc/programs/Xserver/hw/xfree86/xf86Version.h:
/* This has five arguments for compatibilty reasons */
#define XF86_VERSION_NUMERIC(major,minor,patch,snap,dummy) \
(((major) * 10000000) + ((minor) * 100000) + ((patch) * 1000)
+ snap)
--
Matthieu