Changes between Version 73 and Version 74 of DevWikiWinMingW64


Ignore:
Timestamp:
Dec 10, 2011, 12:37:43 AM (12 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v73 v74  
    212212
    213213{{{
     214mkdir /c/projects/pgx64
    214215cd postgresql
    215216tar -xvjf postgresql-9.1.2.tar.bz2
    216 cd postgresql-snapshot
    217  ./configure --prefix=/c/projects/pg/pg91dev \
     217cd postgresql-9.1.2
     218./configure --prefix=/c/projects/pgx64/pg91 \
    218219 --build=i686-w64-mingw32 \
    219220 --host=i686-w64-mingw32 --target=i686-w64-mingw32 \
     
    223224 make
    224225 make install
    225 }}}
    226 
     226#initialize the database cluster
     227/c/projects/pgx64/pg91/bin/initdb -U postgres -D /c/projects/pgx64/pg91/data -A trust
     228}}}
     229
     230To initialize the database cluster
     231{{{