...
todo - where and how do we get the postgis package?
from code.google.com/p/eas/downloads
make sure these paths are correct!
Code Block |
---|
$ yum install postgresql-devel
$ tar xvfz postgis-1.3.1.tar.gz
$ cd postgis-1.3.1
$ ./configure \--with-pgsql=/usr/bin/pg_config \--with-geos=/usr/local/bin/geos-config \--with-proj=/usr/local/share
$ make
$ su
$ make install
$ exit
|
...