Changes between Version 112 and Version 113 of UsersWikiWinCompile
- Timestamp:
- 01/01/10 02:51:38 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiWinCompile
v112 v113 252 252 253 253 LibXML2 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 254 1. mkdir /c/thesrc/libxml 255 2. cd /c/thesrc/libxml 256 3. *ftp://xmlsoft.org/libxml2/libxml2-2.7.6.tar.gz 257 4. For windows it crashes currently unless you compile libxml statically which means 258 it 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 260 263 # make 261 264 # make install … … 299 302 300 303 === 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 303 324 304 325 === Installing into PostgreSQL ===