gstat configuration

Because I don't have root permission on my machine, I had to use a different installation location from the usual /usr/local/. Thus I ran

configure --with-cdf --prefix=/data/local

as I put my own software in a directory called /data/local. Before doing that, however, I'd make a few

Changes to files:

src/Makefile:
I had to change
CPPFLAGS = -I../include
to
CPPFLAGS = -I../include -I${includedir}
in src/Makefile, as I used the different prefix, and gstat requires a file called "gd.h". If you don't have gd, then you'll need to get and install it yourself first.

makefile:
I had to change
INSTALLDIR = /usr/local/bin
to
INSTALLDIR = ${bindir}
in makefile, again because I don't have root privileges and so changed the prefix.

Website maintained by Andy Long. Comments appreciated.
aelon@sph.umich.edu