OK, if I'm right, this got broken somewhere along the line; look at this in
configure.in:
AC_ARG_WITH(uninst-gii,
[ --with-uninst-gii=DIR use uninstalled copy of LibGII found in DIR],
absval=`(cd "$withval"; pwd)`
CFLAGS="$CFLAGS -I$absval/include"
CPPFLAGS="$CPPFLAGS -I$absval/include"
LDFLAGS="$LDFLAGS -L$absval/gg -L$absval/gii")
...The -I flags are OK, but the -L flags point at the code directories,
not at the .libs directories. I'd just patch that on, but you know,
the thing with autoconf is that the obvious fix is almost never the
correct one :-)
--
Brian