Changes between Version 84 and Version 85 of DevWikiWinMingW64
- Timestamp:
- 03/01/12 09:20:27 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v84 v85 168 168 }}} 169 169 170 == 5. Compiling Proj == 170 == Installing !LibIconv == 171 172 For 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 176 Save the source in your C:\projects directory. Open up the MSYS terminal. Ignore the errors in the configure process. 177 {{{ 178 cd /c/projects 179 tar xvfz libiconv-1.13.1.tar.gz 180 cd 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 182 make 183 make install 184 }}} 185 Verify 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 == 171 191 Download Proj4 from the web site, and the datum shifts grid file. 172 192 … … 199 219 Have to copy the nad folder manually. The .dll file is strangely called libproj-0.dll. of libproj.dll. Oh well. 200 220 201 == 6.Compiling and Installing C-Unit ==221 == Compiling and Installing C-Unit == 202 222 Download from http://sourceforge.net/projects/cunit/ into c:\projects 203 223 … … 292 312 --with-projdir=/c/projects/proj/rel-4.7.0w64 \ 293 313 --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 295 316 296 317 make