Changes between Version 48 and Version 49 of DevWikiWinMingW64

Show
Ignore:
Timestamp:
04/13/11 20:04:17 (2 years ago)
Author:
robe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v48 v49  
    197197make && make install 
    198198}}} 
    199  
     199== 7. Compiling LibXML2 == 
     200 
     201mkdir /c/projects/libxml 
     202 cd /c/projects/libxml 
     203ftp://xmlsoft.org/libxml2/libxml2-2.7.6.tar.gz  
     204For windows it crashes currently unless you compile libxml statically which means 
     205it gets embedded in the postgis-1.5.dll 
     206{{{ 
     207 tar xvfz libxml2-2.7.6.tar.gz  
     208cd libxml2-2.7.6 
     209 ./configure --prefix=/c/projects/libxml/libxml2-2.7.6release --build=i686-w64-mingw32 --host=i686-w64-mingw32 --target=i686-w64-mingw32 
     210 make 
     211 make install 
     212}}} 
    200213== 7. Compiling PostgreSQL ==