Changes between Version 138 and Version 139 of DevWikiWinMingW64


Ignore:
Timestamp:
Jun 29, 2012, 4:05:59 AM (12 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v138 v139  
    138138== GDAL ==
    139139{{{
     140export GDAL_VER=1.9.1
    140141cd ${PROJECTS}/gdal
    141 wget http://download.osgeo.org/gdal/gdal-1.9.0.tar.gz
    142 tar xvfz gdal-1.9.0.tar.gz
    143 cd gdal-1.9.0
    144 
    145 ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --with-threads=no --prefix=/c/projects/gdal/rel-1.9.0w64
     142wget http://download.osgeo.org/gdal/gdal-${GDAL_VER}.tar.gz
     143tar xvfz gdal-1.9.1.tar.gz
     144cd gdal-${GDAL_VER}
     145./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --with-threads=no --prefix=/c/projects/gdal/rel-${GDAL_VER}w64
    146146make && make install
    147 cd /c/projects/gdal/rel-1.9.0w64/bin
     147cd ${PROJECTS}/gdal/rel-${GDAL_VER}w64/bin
    148148strip *.dll
    149149}}}