1 #ifndef rr__version_h
2 #define rr__version_h
3 
4 #define RR_MAJOR_VERSION 3
5 #define RR_MINOR_VERSION 6
6 #define RR_MICRO_VERSION 31
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
16