Category Archives: GIS Libraries

Building and Installing PostGIS from Source

Prerequisites PostgreSQL You need to already have PostgreSQL, its dev package, and it libraries installed. On Fedora-based distributions, it looks like this: [root@branchpoint build]# rpm -qa | sort | grep -i postgresql postgresql92-9.2.9-1.46.amzn1.x86_64 postgresql92-devel-9.2.9-1.46.amzn1.x86_64 postgresql92-libs-9.2.9-1.46.amzn1.x86_64 postgresql92-server-9.2.9-1.46.amzn1.x86_64 postgresql92-server-compat-9.2.9-1.46.amzn1.x86_64 [root@branchpoint build]#  Eat Your Wheaties Setup local time zone. Update installed packages. Reboot. sudo ln -sf /usr/share/zoneinfo/America/Chicago /etc/localtime

Read More