2009-11-27 21:37:11 +01:00
|
|
|
#ifndef VERSION
|
|
|
|
|
/*
|
|
|
|
|
* Edit this definition in version_base.in to define the base version
|
|
|
|
|
* number for the compiled result.
|
|
|
|
|
*/
|
|
|
|
|
# define VERSION_MAJOR1 0
|
|
|
|
|
# define VERSION_MAJOR2 9
|
2009-12-30 17:45:06 +01:00
|
|
|
# define VERSION_MINOR 2
|
2009-11-27 21:37:11 +01:00
|
|
|
# define VERSION_EXTRA ""
|
|
|
|
|
|
|
|
|
|
/* This is a concatenation of MAJOR1.MAJOR2 that is used by
|
|
|
|
|
vams_simparam.c to make a double value. */
|
|
|
|
|
# define VERSION_MAJOR 0.9
|
|
|
|
|
|
|
|
|
|
# define VERSION_STRINGIFY(x) #x
|
|
|
|
|
# define VERSION_STR(a,b,extra) VERSION_STRINGIFY(a.b) " " extra
|
|
|
|
|
|
|
|
|
|
#define VERSION VERSION_STR(VERSION_MAJOR,VERSION_MINOR,VERSION_EXTRA)
|
|
|
|
|
#endif
|