1 #ifndef ROOT_RVersion 2 #define ROOT_RVersion 3 4 /* Version information automatically generated by installer. */ 5 6 /* 7 * These macros can be used in the following way: 8 * 9 * #if ROOT_VERSION_CODE >= ROOT_VERSION(2,23,4) 10 * #include <newheader.h> 11 * #else 12 * #include <oldheader.h> 13 * #endif 14 * 15 */ 16 17 #define ROOT_RELEASE "5.34/30" 18 #define ROOT_RELEASE_DATE "Apr 23 2015" 19 #define ROOT_RELEASE_TIME "18:30:24" 20 #define ROOT_SVN_REVISION 49361 21 #define ROOT_GIT_COMMIT "v5-34-28-57-gec27989" 22 #define ROOT_GIT_BRANCH "heads/v5-34-00-patches" 23 #define ROOT_VERSION_CODE 336414 24 #define ROOT_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) 25 26 #endif 27