Changes between Version 78 and Version 79 of DevWikiWinMingW64
- Timestamp:
- 03/01/12 04:57:11 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v78 v79 188 188 Apply mutex patch in http://trac.osgeo.org/proj/ticket/72 to src/pj_mutex.c 189 189 {{{ 190 ./configure --prefix=/c/projects/proj/rel-4.7.0 --host=i686-w64-mingw32 --target=i686-w64-mingw32 --enable-shared --disable-static191 190 #if you are building for 64-bit then use x86_64-w64-mingw32 for the build,host,target 191 #32 bit uses i686-w64-mingw32 for build, host, target 192 ./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-static 193 192 194 make 193 195 make install … … 225 227 == 8. Compiling PostgreSQL 9.1 == 226 228 Download source from: 227 [http://ftp.postgresql.org/pub/source/v9.1. 2/postgresql-9.1.2.tar.bz2]229 [http://ftp.postgresql.org/pub/source/v9.1.3/postgresql-9.1.3.tar.bz2] 228 230 229 231 {{{ 230 232 mkdir /c/projects/pgx64 231 233 cd postgresql 232 tar -xvjf postgresql-9.1.2.tar.bz2 233 cd postgresql-9.1.2 234 tar -xvjf postgresql-9.1.3.tar.bz2 235 cd postgresql-9.1.3 236 #if you are building for 64-bit then use x86_64-w64-mingw32 for the build,host,target 237 #32 bit uses i686-w64-mingw32 for build, host, target 234 238 ./configure --prefix=/c/projects/pgx64/pg91 \ 235 --build= i686-w64-mingw32 \236 --host= i686-w64-mingw32 --target=i686-w64-mingw32 \239 --build=x86_64-w64-mingw32 \ 240 --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 \ 237 241 --with-pgport=8441 --enable-cassert --enable-debug \ 238 242 --enable-integer-datetimes --without-zlib