Changes between Version 6 and Version 7 of DevWikiWinMingWSys_20_MSVC
- Timestamp:
- 02/29/12 02:29:34 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingWSys_20_MSVC
v6 v7 237 237 238 238 * Change the `--libs` option so that `-lgeos` becomes `-lxml2 -lz -lpthread -liconv -lm` 239 * Change the `--cflags` option to return `-I/c/pgsql/include /libxml`239 * Change the `--cflags` option to return `-I/c/pgsql/include` 240 240 241 241 == JSON-C == … … 267 267 cd apps 268 268 make gdal-config 269 cd .. 269 270 }}} 270 271 … … 289 290 290 291 {{{ 292 cd \ 293 cd build\sources\gdal-1.9.0 291 294 nmake -f makefile.vc MSVC_VER=1500 292 295 nmake -f makefile.vc MSVC_VER=1500 install … … 322 325 cd /c/build/sources 323 326 svn co http://svn.osgeo.org/postgis/trunk postgis-svn 327 cd postgis-svn 328 ./autogen.sh 329 }}} 330 331 Before building, edit one file to allow the regression tests to run, edit `./regress/Makefile.in` and set 332 {{{ 333 REGRESS_INSTALLDIR=C:/build/sources/postgis-svn/regress/00-regress-install 334 }}} 335 336 Now you can configure and build, 337 {{{ 324 338 export PATH=$PATH:/c/pgsql/bin 325 }}} 326 327 Before building, edit one file to allow the regression tests to run, edit `./regress/Makefile.in` and set 328 {{{ 329 REGRESS_INSTALLDIR=C:/build/sources/postgis-svn/regress/00-regress-install 330 }}} 331 332 Now you can configure and build, 333 {{{ 339 cd /c/build/sources/postgis-svn 340 334 341 CPPFLAGS="-I/c/pgsql/include" LDFLAGS="-L/c/pgsql/lib" ./configure \ 335 342 --with-xml2config=/c/pgsql/bin/xml2-config \