Roxen.git/
server/
etc/
include/
version.h
Branch:
Tag:
Non-build tags
All tags
No tags
1999-12-28
1999-12-28 02:11:11 by Martin Nilsson <mani@lysator.liu.se>
bdb554b327e70a169b1798c2a4a8a8471ce29fe6 (
13
lines) (+
13
/-
0
)
[
Show
|
Annotate
]
Branch:
5.2
It's good manner to keep the version in a header file.
Rev: server/etc/include/version.h:1.1
1:
+
/*
+
* Version information
+
*/
-
+
constant __roxen_version__ = "1.4";
+
constant __roxen_build__ = "0";
+
+
#ifdef __NT__
+
string real_version= "Roxen Challenger/"+__roxen_version__+"."+__roxen_build__+" NT";
+
#else
+
string real_version= "Roxen Challenger/"+__roxen_version__+"."+__roxen_build__;
+
#endif
+
Newline at end of file added.