This file is indexed.

/usr/include/root/RVersion.h is in libroot-core-dev 5.34.00-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef ROOT_RVersion
#define ROOT_RVersion

/* Version information automatically generated by installer. */

/*
 * These macros can be used in the following way:
 *
 *    #if ROOT_VERSION_CODE >= ROOT_VERSION(2,23,4)
 *       #include <newheader.h>
 *    #else
 *       #include <oldheader.h>
 *    #endif
 *
*/

#define ROOT_RELEASE "5.34/00"
#define ROOT_RELEASE_DATE "Jun  5 2012"
#define ROOT_RELEASE_TIME "15:17:17"
#define ROOT_SVN_REVISION 44555
#define ROOT_SVN_BRANCH "branches/v5-34-00-patches"
#define ROOT_VERSION_CODE 336384
#define ROOT_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

#endif