Changes between Version 125 and Version 126 of DevWikiWinMingW64
- Timestamp:
- 03/19/12 10:43:24 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DevWikiWinMingW64
v125 v126 213 213 Download Proj4 from the web site, and the datum shifts grid file. 214 214 215 * http://download.osgeo.org/proj/proj-4. 7.0.tar.gz215 * http://download.osgeo.org/proj/proj-4.8.0.tar.gz 216 216 * http://download.osgeo.org/proj/proj-datumgrid-1.5.zip 217 217 … … 221 221 222 222 cd /c/projects/proj 223 wget http://download.osgeo.org/proj/proj-4. 7.0.tar.gz223 wget http://download.osgeo.org/proj/proj-4.8.0.tar.gz 224 224 wget http://download.osgeo.org/proj/proj-datumgrid-1.5.zip 225 tar xvfz proj-4. 7.0.tar.gz226 cd proj-4. 7.0225 tar xvfz proj-4.8.0.tar.gz 226 cd proj-4.8.0 227 227 cd nad 228 228 unzip ../../proj-datumgrid-1.5.zip 229 229 cd .. 230 230 }}} 231 232 Apply mutex patch in http://trac.osgeo.org/proj/ticket/72 to src/pj_mutex.c233 {{{234 #if you are building for 64-bit then use x86_64-w64-mingw32 for the build,host,target235 #32 bit uses i686-w64-mingw32 for build, host, target236 ./configure --prefix=/c/projects/proj/rel-4.7.0w64 --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --enable-shared --disable-static237 238 make239 make install240 }}}241 242 Seems to give an error on make install (when trying to copy over the nad folder), but generates files in rel-4.7.0.243 Have to copy the nad folder manually. The .dll file is strangely called libproj-0.dll. of libproj.dll. Oh well.244 231 245 232 == Compiling and Installing C-Unit ==