This file is indexed.

/usr/include/gdal/gdal_version.h is in libgdal1-dev 1.7.3-6ubuntu3.

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
/* -------------------------------------------------------------------- */
/*      GDAL Version Information.                                       */
/* -------------------------------------------------------------------- */

#ifndef GDAL_VERSION_MAJOR
#  define GDAL_VERSION_MAJOR    1
#  define GDAL_VERSION_MINOR    7
#  define GDAL_VERSION_REV      3
#  define GDAL_VERSION_BUILD    0
#endif

#ifndef GDAL_VERSION_NUM
#  define GDAL_VERSION_NUM      (GDAL_VERSION_MAJOR*1000+GDAL_VERSION_MINOR*100+GDAL_VERSION_REV*10+GDAL_VERSION_BUILD)
#endif

#ifndef GDAL_RELEASE_DATE
#  define GDAL_RELEASE_DATE     20101110
#endif
#ifndef GDAL_RELEASE_NAME
#  define GDAL_RELEASE_NAME     "1.7.3"
#endif