GDAL
|
00001 00002 /* -------------------------------------------------------------------- */ 00003 /* GDAL Version Information. */ 00004 /* -------------------------------------------------------------------- */ 00005 00006 #ifndef GDAL_VERSION_MAJOR 00007 # define GDAL_VERSION_MAJOR 1 00008 # define GDAL_VERSION_MINOR 9 00009 # define GDAL_VERSION_REV 0 00010 # define GDAL_VERSION_BUILD 0 00011 #endif 00012 00013 #ifndef GDAL_VERSION_NUM 00014 # define GDAL_VERSION_NUM (GDAL_VERSION_MAJOR*1000+GDAL_VERSION_MINOR*100+GDAL_VERSION_REV*10+GDAL_VERSION_BUILD) 00015 #endif 00016 00017 #ifndef GDAL_RELEASE_DATE 00018 # define GDAL_RELEASE_DATE 20111229 00019 #endif 00020 #ifndef GDAL_RELEASE_NAME 00021 # define GDAL_RELEASE_NAME "1.9.0" 00022 #endif