1/*
2    This file contains the version number of the ppp package.
3    it follows the cvs tag, allow easy tracking ppp sources and
4    must be changed before every tagging and submission
5
6*/
7
8
9/* Current release of ppp, MUST be changed before submission */
10#define CURRENT_RELEASE_TAG		"786.1.1"
11
12/* Current working tag */
13#define CURRENT_DEVELOPMENT_TAG		"3468584"
14
15
16#if (!defined(DEVELOPMENT))
17
18/* Development version of ppp */
19#define PPP_VERSION		CURRENT_RELEASE_TAG " [Engineering build " CURRENT_DEVELOPMENT_TAG ", " __DATE__ " " __TIME__ "]"
20
21#else
22
23/* Release version pf ppp */
24#define PPP_VERSION		CURRENT_RELEASE_TAG
25
26#endif
27