Changes between Version 112 and Version 113 of UsersWikiWinCompile


Ignore:
Timestamp:
Jan 1, 2010, 2:51:38 AM (14 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiWinCompile

    v112 v113  
    252252
    253253LibXML2 is only needed for PostGIS 1.5+.
    254 
    255  * ftp://xmlsoft.org/libxml2/libxml2-sources-2.6.32.tar.gz
    256 
    257 {{{
    258 # tar xvfz libxml2-sources-2.6.32.tar.gz
    259 # ./configure --prefix=/c/postgres
     2541. mkdir /c/thesrc/libxml
     2552. cd /c/thesrc/libxml
     2563. *ftp://xmlsoft.org/libxml2/libxml2-2.7.6.tar.gz
     2574.  For windows it crashes currently unless you compile libxml statically which means
     258it gets embedded in the postgis-1.5.dll
     259{{{
     260# tar xvfz libxml2-2.7.6.tar.gz
     261# cd libxml2-2.7.6
     262# ./configure --prefix=/c/thesrc/libxml/libxml2-2.7.6release --disable-shared CCFLAGS=LDFLAGS="-Wl,-static" CFLAGS=-O2
    260263# make
    261264# make install
     
    299302
    300303=== PostGIS 1.5 ===
    301 
    302 More to come here.
     304{{{
     305# tar xvfz postgis-1.5.0.tar.gz
     306# cd postgis-1.5.0
     307
     308# ./configure \
     309#     --prefix=/c/postgres \
     310#     --with-xml2config=/c/thesrc/libxml/libxml2-2.7.6release/bin/xml2-config \
     311#     --with-pgconfig=/c/postgres/bin/pg_config \
     312#     --with-geosconfig=/c/postgres/bin/geos-config \
     313#     --with-projdir=/c/postgres \
     314#     --with-gui
     315
     316# export PATH=/c/postgres/bin:$PATH
     317# make clean
     318# make
     319# make install
     320# make check
     321}}}
     322
     323
    303324
    304325=== Installing into PostgreSQL ===