199 | | |
| 199 | == 7. Compiling LibXML2 == |
| 200 | |
| 201 | mkdir /c/projects/libxml |
| 202 | cd /c/projects/libxml |
| 203 | ftp://xmlsoft.org/libxml2/libxml2-2.7.6.tar.gz |
| 204 | For windows it crashes currently unless you compile libxml statically which means |
| 205 | it gets embedded in the postgis-1.5.dll |
| 206 | {{{ |
| 207 | tar xvfz libxml2-2.7.6.tar.gz |
| 208 | cd 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 | }}} |