2009-11-27 18:25:50 +01:00
|
|
|
#ifndef VERSION
|
|
|
|
|
/*
|
|
|
|
|
* Edit this definition in version_base.in to define the base version
|
|
|
|
|
* number for the compiled result.
|
|
|
|
|
*/
|
2015-08-15 23:23:20 +02:00
|
|
|
# define VERSION_MAJOR 11
|
2009-11-27 18:25:50 +01:00
|
|
|
# define VERSION_MINOR 0
|
|
|
|
|
|
2015-08-15 22:42:57 +02:00
|
|
|
/*
|
|
|
|
|
* This will be appended to the version. Use this to mark development
|
|
|
|
|
* versions and the like.
|
|
|
|
|
*/
|
2020-09-26 22:24:01 +02:00
|
|
|
# define VERSION_EXTRA ""
|
2009-11-27 18:25:50 +01:00
|
|
|
|
|
|
|
|
# define VERSION_STRINGIFY(x) #x
|
2015-08-15 22:42:57 +02:00
|
|
|
# define VERSION_STR(a,b,extra) VERSION_STRINGIFY(a.b) extra
|
2009-11-27 18:25:50 +01:00
|
|
|
|
|
|
|
|
#define VERSION VERSION_STR(VERSION_MAJOR,VERSION_MINOR,VERSION_EXTRA)
|
|
|
|
|
#endif
|