Changes between Version 84 and Version 85 of DevWikiWinMingW64


Ignore:
Timestamp:
Mar 1, 2012, 9:20:27 AM (12 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v84 v85  
    168168}}}
    169169
    170 == 5. Compiling Proj ==
     170==  Installing !LibIconv ==
     171
     172For iconv we are going to compile our own copy instead of installing from GNUWin.
     173
     174 * http://ftp.gnu.org/gnu/libiconv/libiconv-1.13.1.tar.gz
     175
     176Save the source in your C:\projects directory. Open up the MSYS terminal. Ignore the errors in the configure process.
     177{{{
     178cd /c/projects
     179tar xvfz libiconv-1.13.1.tar.gz
     180cd libiconv-1.13.1
     181./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/c/projects/rel-libiconv-1.13.1w64
     182make
     183make install
     184}}}
     185Verify if the version of iconv you are running is the same as the one you just compiled (1.13):
     186{{{
     187# iconv --version
     188}}}
     189
     190== Compiling Proj ==
    171191Download  Proj4 from the web site, and the datum shifts grid file.
    172192
     
    199219Have to copy the nad folder manually.  The .dll file is strangely called libproj-0.dll. of libproj.dll.  Oh well.
    200220
    201 == 6. Compiling and Installing C-Unit ==
     221== Compiling and Installing C-Unit ==
    202222Download from http://sourceforge.net/projects/cunit/ into c:\projects
    203223
     
    292312  --with-projdir=/c/projects/proj/rel-4.7.0w64 \
    293313  --with-gdalconfig=/c/projects/gdal/rel-1.9.0w64/bin/gdal-config \
    294   --with-jsondir=/c/projects/json-c/rel-0.9w64
     314  --with-jsondir=/c/projects/json-c/rel-0.9w64 \
     315  --with-libiconv-prefix=/c/projects/rel-libiconv-1.13.1w64
    295316
    296317make