I'm attempting to setup rgeo on Ubuntu 12.04. I'm using geos, gdal, proj out of
irb(main):004:0> RGeo::Geos.supported?
=> false
When I went a hunting down why, I found myself in the
rgeo gem sources under rgeo-0.3.20/ext/geos_c_impl
I ran ruby extconf.rb to get:
checking for geos_c.h... yes
checking for GEOSSetSRID_r() in geos_c.h... no
checking for GEOSPreparedContains_r() in geos_c.h... no
checking for GEOSPreparedDisjoint_r() in geos_c.h... no
checking for GEOSWKTWriter_setOutputDimension_r() in geos_c.h... no
checking for rb_memhash() in ruby.h... yes
**** WARNING: Unable to find GEOS headers or GEOS version is too old.
**** Compiling without GEOS support.
creating Makefile
When I go hunting in the make file for the functions that are not found they all seem to be there.
Any pointers that might help me out of this?
Thanks in advance.