Hi, I am installing PostGis on top of psql on a Debian machine (actually crunchbang).
I have completed the following steps:
$ wget http://download.osgeo.org/postgis/source/postgis-2.0.3.tar.gz $ tar xzf postgis-2.0.3.tar.gz $ cd postgis-2.0.3 $ ./configure
In the last step, I get the following error:
configure: error: the PGXS Makefile /usr/lib/postgresql/9.1/lib/pgxs/src/makefiles/pgxs.mk cannot be found. Please install the PostgreSQL server development packages and re-run configure.
The problem is that I already have postgres installed:
$ psql --version psql (9.1.9)
I checked this on two machines with the same configuration and got the same error. What am I missing here?
source share