|
GDAL
|
00001 /* $Id: gdal_version.h 40767 2017-11-20 10:39:34Z rouault $ */ 00002 00003 /* -------------------------------------------------------------------- */ 00004 /* GDAL Version Information. */ 00005 /* -------------------------------------------------------------------- */ 00006 00007 #ifndef GDAL_VERSION_MAJOR 00008 # define GDAL_VERSION_MAJOR 2 00009 # define GDAL_VERSION_MINOR 2 00010 # define GDAL_VERSION_REV 3 00011 # define GDAL_VERSION_BUILD 0 00012 #endif 00013 00014 /* GDAL_COMPUTE_VERSION macro introduced in GDAL 1.10 */ 00015 /* Must be used ONLY to compare with version numbers for GDAL >= 1.10 */ 00016 #ifndef GDAL_COMPUTE_VERSION 00017 #define GDAL_COMPUTE_VERSION(maj,min,rev) ((maj)*1000000+(min)*10000+(rev)*100) 00018 #endif 00019 00020 /* Note: the formula to compute GDAL_VERSION_NUM has changed in GDAL 1.10 */ 00021 #ifndef GDAL_VERSION_NUM 00022 # define GDAL_VERSION_NUM (GDAL_COMPUTE_VERSION(GDAL_VERSION_MAJOR,GDAL_VERSION_MINOR,GDAL_VERSION_REV)+GDAL_VERSION_BUILD) 00023 #endif 00024 00025 #ifndef GDAL_RELEASE_DATE 00026 # define GDAL_RELEASE_DATE 20171120 00027 #endif 00028 #ifndef GDAL_RELEASE_NAME 00029 # define GDAL_RELEASE_NAME "2.2.3" 00030 #endif
1.7.6.1.