GDAL
gdal_version.h
1 
2 /* -------------------------------------------------------------------- */
3 /* GDAL Version Information. */
4 /* -------------------------------------------------------------------- */
5 
6 #ifndef GDAL_VERSION_MAJOR
7 # define GDAL_VERSION_MAJOR 1
8 # define GDAL_VERSION_MINOR 11
9 # define GDAL_VERSION_REV 3
10 # define GDAL_VERSION_BUILD 0
11 #endif
12 
13 /* GDAL_COMPUTE_VERSION macro introduced in GDAL 1.10 */
14 /* Must be used ONLY to compare with version numbers for GDAL >= 1.10 */
15 #ifndef GDAL_COMPUTE_VERSION
16 #define GDAL_COMPUTE_VERSION(maj,min,rev) ((maj)*1000000+(min)*10000+(rev)*100)
17 #endif
18 
19 /* Note: the formula to compute GDAL_VERSION_NUM has changed in GDAL 1.10 */
20 #ifndef GDAL_VERSION_NUM
21 # define GDAL_VERSION_NUM (GDAL_COMPUTE_VERSION(GDAL_VERSION_MAJOR,GDAL_VERSION_MINOR,GDAL_VERSION_REV)+GDAL_VERSION_BUILD)
22 #endif
23 
24 #ifndef GDAL_RELEASE_DATE
25 # define GDAL_RELEASE_DATE 20150916
26 #endif
27 #ifndef GDAL_RELEASE_NAME
28 # define GDAL_RELEASE_NAME "1.11.3"
29 #endif

Generated for GDAL by doxygen 1.8.11.