root/tags/gdal_1_3_2/gcore/gdal_version.h

Revision 9678, 0.7 kB (checked in by fwarmerdam, 3 years ago)

updated 1.3.2 final

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1
2 /* -------------------------------------------------------------------- */
3 /*      GDAL Version Information.                                       */
4 /* -------------------------------------------------------------------- */
5
6 #ifndef GDAL_VERSION_MAJOR
7 define GDAL_VERSION_MAJOR    1
8 define GDAL_VERSION_MINOR    3
9 define GDAL_VERSION_REV      2
10 define GDAL_VERSION_BUILD    0
11 #endif
12
13 #ifndef GDAL_VERSION_NUM
14 define GDAL_VERSION_NUM      (GDAL_VERSION_MAJOR*1000+GDAL_VERSION_MINOR*100+GDAL_VERSION_REV*10+GDAL_VERSION_BUILD)
15 #endif
16
17 #ifndef GDAL_RELEASE_DATE
18 define GDAL_RELEASE_DATE     20060502
19 #endif
20 #ifndef GDAL_RELEASE_NAME
21 define GDAL_RELEASE_NAME     "1.3.2.0"
22 #endif
23
Note: See TracBrowser for help on using the browser.