Changes between Version 24 and Version 25 of DevWikiWinMingWSys_20


Ignore:
Timestamp:
Nov 23, 2011, 7:06:31 PM (12 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingWSys_20

    v24 v25  
    326326 * run GDAL-1.8.0.win32-py2.7.exe or GDAL-1.8.0.win32-py2.7.exe (listed in GDAL section)
    327327
    328 == 17. Compiling PostGIS ==
     328== 17. Compiling JSON-C ==
     329This is needed if you want ST_GeomFromGeoJSON to be functional.
     330Download [http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gz] and save to c:\projects\json-c
     331{{{
     332cd /c/projects/json-c
     333tar xvfz json-c-0.9.tar.gz
     334cd json-c-0.9
     335## had to compile with -w (disable warnings otherwise it gave errors
     336./configure --prefix=/c/projects/json-c/rel-0.9 CFLAGS=-w
     337make clean
     338make
     339make install
     340}}}
     341#this part is a hack, but again didn't work without it
     342#you can try without doing this, but if you get errors about
     343# conflicting type def during PostGIS compile, you need this.
     344
     345 * Open up /c/projects/json-c/rel-0.9/include/json/json_object.h
     346 * remark out line 32 that reads {{{ typedef int boolean }}}
     347 * so it should now read {{{ /** typedef int boolean; **/ }}}
     348
     349== 18. Compiling PostGIS ==
    329350
    330351=== PostGIS 2.0 ===