Changes between Version 8 and Version 9 of HowToUpgradeOSGeo4WGDAL


Ignore:
Timestamp:
Dec 25, 2018, 12:41:53 PM (5 years ago)
Author:
hellik
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToUpgradeOSGeo4WGDAL

    v8 v9  
    1313
    1414* r73839
     15
     16Example for a GDAL upgrade from 2.3.x to 2.4.x:
     17
     18{{{
     19Modified: grass/trunk/mswindows/osgeo4w/package.sh
     20===================================================================
     21--- grass/trunk/mswindows/osgeo4w/package.sh    2018-12-25 14:38:35 UTC (rev 73832)
     22+++ grass/trunk/mswindows/osgeo4w/package.sh    2018-12-25 19:58:36 UTC (rev 73833)
     23@@ -118,7 +118,7 @@
     24 [ -d mswindows/osgeo4w/lib ] || mkdir mswindows/osgeo4w/lib
     25 dll_to_a $OSGEO4W_ROOT_MSYS/bin/proj_5_2.dll    mswindows/osgeo4w/lib/libproj
     26 dll_to_a $OSGEO4W_ROOT_MSYS/bin/iconv.dll       mswindows/osgeo4w/lib/libiconv
     27-dll_to_a $OSGEO4W_ROOT_MSYS/bin/gdal203.dll     mswindows/osgeo4w/lib/libgdal
     28+dll_to_a $OSGEO4W_ROOT_MSYS/bin/gdal204.dll     mswindows/osgeo4w/lib/libgdal
     29 dll_to_a $OSGEO4W_ROOT_MSYS/bin/liblas_c.dll    mswindows/osgeo4w/lib/liblas_c
     30 dll_to_a $OSGEO4W_ROOT_MSYS/bin/geos_c.dll      mswindows/osgeo4w/lib/libgeos_c
     31 dll_to_a $OSGEO4W_ROOT_MSYS/bin/libtiff.dll     mswindows/osgeo4w/lib/libtiff
     32}}}
     33
     34{{{
     35Modified: grass/trunk/lib/raster/gdal.c
     36===================================================================
     37--- grass/trunk/lib/raster/gdal.c       2018-12-25 20:03:33 UTC (rev 73836)
     38+++ grass/trunk/lib/raster/gdal.c       2018-12-25 20:04:13 UTC (rev 73837)
     39@@ -115,6 +115,7 @@
     40        "libgdal1.7.0.so",
     41 # endif
     42 # ifdef _WIN32
     43+       "gdal204.dll",       
     44        "gdal203.dll",       
     45        "gdal202.dll",       
     46        "gdal201.dll",
     47}}}