Changes between Version 6 and Version 7 of DevWikiWinMingWSys_20_MSVC


Ignore:
Timestamp:
Feb 29, 2012, 2:29:34 AM (12 years ago)
Author:
Mike Taves
Comment:

fix issue with xml2-config; missing ./autogen.sh for SVN

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingWSys_20_MSVC

    v6 v7  
    237237
    238238 * 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`
    240240
    241241== JSON-C ==
     
    267267cd apps
    268268make gdal-config
     269cd ..
    269270}}}
    270271
     
    289290
    290291{{{
     292cd \
     293cd build\sources\gdal-1.9.0
    291294nmake -f makefile.vc MSVC_VER=1500
    292295nmake -f makefile.vc MSVC_VER=1500 install
     
    322325cd /c/build/sources
    323326svn co http://svn.osgeo.org/postgis/trunk postgis-svn
     327cd postgis-svn
     328./autogen.sh
     329}}}
     330
     331Before building, edit one file to allow the regression tests to run, edit `./regress/Makefile.in` and set
     332{{{
     333REGRESS_INSTALLDIR=C:/build/sources/postgis-svn/regress/00-regress-install
     334}}}
     335
     336Now you can configure and build,
     337{{{
    324338export 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 {{{
     339cd /c/build/sources/postgis-svn
     340
    334341CPPFLAGS="-I/c/pgsql/include" LDFLAGS="-L/c/pgsql/lib" ./configure \
    335342  --with-xml2config=/c/pgsql/bin/xml2-config \