Changes between Version 145 and Version 146 of DevWikiWinMingW64
- Timestamp:
- 07/06/12 05:32:41 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v145 v146 245 245 * http://download.osgeo.org/proj/proj-datumgrid-1.5.zip 246 246 247 and copy to c:\ projects\proj247 and copy to c:\ming64\projects\proj 248 248 The datum grid file must be unzipped into the "nad" subdirectory of the Proj4 source tree. 249 249 {{{ … … 283 283 284 284 {{{ 285 mkdir /c/projects/libxml286 cd /c/projects/libxml285 mkdir ${PROJECTS}/libxml 286 cd ${PROJECTS}/libxml 287 287 wget ftp://xmlsoft.org/libxml2/libxml2-2.7.8.tar.gz 288 288 }}} … … 313 313 314 314 {{{ 315 mkdir /c/projects/pgx64315 mkdir ${PROJECTS}/pgx64 316 316 cd postgresql 317 317 tar -xvjf postgresql-9.1.3.tar.bz2 … … 321 321 #EnterpriseDb VC++ 64-bit builds are compiled with disable float8 by val. 322 322 #If we don't include this line, the modules compiled against mingw64 will be incompatible with edb builds 323 ./configure --prefix= /c/projects/pgx64/pg91 \323 ./configure --prefix=${PROJECTS}/pgx64/pg91 \ 324 324 --build=x86_64-w64-mingw32 \ 325 325 --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 \ … … 330 330 make install 331 331 #initialize the database cluster 332 /c/projects/pgx64/pg91/bin/initdb -U postgres -D /c/projects/pgx64/pg91/data -A trust332 /c/projects/pgx64/pg91/bin/initdb -U postgres -D ${PROJECTS}/pgx64/pg91/data -A trust 333 333 }}} 334 334 … … 338 338 {{{ 339 339 cd ${PROJECTS}/json-c 340 wget http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gz 340 341 tar xvfz json-c-0.9.tar.gz 341 342 cd json-c-0.9