]> Dogcows Code - chaz/openbox/blob - obrender/version.h.in
Merge branch 'master' into chaz
[chaz/openbox] / obrender / version.h.in
1 #ifndef rr__version_h
2 #define rr__version_h
3
4 #define RR_MAJOR_VERSION @RR_MAJOR_VERSION@
5 #define RR_MINOR_VERSION @RR_MINOR_VERSION@
6 #define RR_MICRO_VERSION @RR_MICRO_VERSION@
7 #define RR_VERSION RR_MAJOR_VERSION.RR_MINOR_VERSION.RR_MICRO_VERSION
8
9 #define RR_CHECK_VERSION(major,minor,micro) \
10 (RR_MAJOR_VERSION > (major) || \
11 (RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION > (minor)) || \
12 (RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION == (minor) && \
13 RR_MICRO_VERSION >= (micro)))
14
15 #endif
This page took 0.03205 seconds and 4 git commands to generate.