[EMAIL PROTECTED] writes:
> lsh assumes that gmp will magically be found. This is _not_ a good
> idea - it certainly won't find gmp on any of my solaris boxes. configure
> needs to have a --with-gmp=/path/to/gmp option. It should also have generic
> --extra-includes= and --extra-libs= options.
It ought to work to use
LDFLAGS="-L /path/to/gmplib" CPPFLAGS="-I /path/gmp/includes" ./configure
A more difficult problem, for me, is to add the proper -R flags. On
most of Lysator's Solaris machines, zlib is installed as a shared
library in /sw/local/lib. With the vanilla gcc installation
(./configure --prefix=/sw/local && make bootstrap), configure thinks
it can compile and link with libz without adding any extra compiler
flags. But the executables can't run, because libz.so is not found.
So in this case, I'll have to configure lsh with LDFLAGS="-R
/sw/local/lib" ./configure.
> More as I get this beastie to compile. I'm _so_ glad the crypto gag order
> has been removed :)
Great.
/Niels