20 lines
497 B
C
20 lines
497 B
C
#ifndef VERSION
|
|
/*
|
|
* Edit this definition in version_base.in to define the base version
|
|
* number for the compiled result.
|
|
*/
|
|
# define VERSION_MAJOR 10
|
|
# define VERSION_MINOR 3
|
|
|
|
/*
|
|
* This will be appended to the version. Use this to mark development
|
|
* versions and the like.
|
|
*/
|
|
# define VERSION_EXTRA " (stable)"
|
|
|
|
# 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
|