Changes between Version 78 and Version 79 of DevWikiWinMingW64


Ignore:
Timestamp:
Mar 1, 2012, 4:57:11 AM (12 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v78 v79  
    188188Apply mutex patch in http://trac.osgeo.org/proj/ticket/72 to src/pj_mutex.c
    189189{{{
    190  ./configure --prefix=/c/projects/proj/rel-4.7.0 --host=i686-w64-mingw32 --target=i686-w64-mingw32 --enable-shared --disable-static
    191190#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
    192194 make
    193195 make install
     
    225227== 8. Compiling PostgreSQL 9.1 ==
    226228Download 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]
    228230
    229231{{{
    230232mkdir /c/projects/pgx64
    231233cd postgresql
    232 tar -xvjf postgresql-9.1.2.tar.bz2
    233 cd postgresql-9.1.2
     234tar -xvjf postgresql-9.1.3.tar.bz2
     235cd 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
    234238./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 \
    237241 --with-pgport=8441 --enable-cassert --enable-debug \
    238242 --enable-integer-datetimes --without-zlib