> Good Morning, > When trying to run configure for openssh (2.5.1p1 or 2.5.1p2 or > 2.5.2p1 or 2.9p2), it fails and tells me that I need to install ZLIB. > Zlib has been configured, made, made tested and made installed into > /opt/zlib (default) and IS already installed. I am running hpux 11.00, > have zlib 1.1.3 , openssl 0.9.6 , perl 5.005_03 and am running HP ansi C > for 11.00. Is OpenSSH configure looking for the ZLib to be in a directory > other than /opt ??? Any suggestions will be GREATLY appreciated !!!!! > Thank you for your time..........
Yo Gary!
Hmm, I just checked the source for zlib 1.1.3 and the default is
/usr/local. So you must be using an rpm or some other munged version
of zlib.
You need to tell ./configure where to find it. Not sure what you have
under /opt/zlib, but try something like this:
./configure --with-cppflags="-I/opt/zlib/include" \
--with-libs="-L/opt/zlib/lib"
RGDS
GARY
---------------------------------------------------------------------------
Gary E. Miller Rellim 20340 Empire Ave, Suite E-3, Bend, OR 97701
gem at rellim.com Tel:+1(541)382-8588 Fax: +1(541)382-8676
On Sat, 7 Jul 2001, Gary Sakimoto wrote:
> > When trying to run configure for openssh (2.5.1p1 or 2.5.1p2 or
> > 2.5.2p1 or 2.9p2), it fails and tells me that I need to install ZLIB.
> > Zlib has been configured, made, made tested and made installed into
> > /opt/zlib (default) and IS already installed. I am running hpux
11.00,
> > have zlib 1.1.3 , openssl 0.9.6 , perl 5.005_03 and am running HP ansi
C
> > for 11.00. Is OpenSSH configure looking for the ZLib to be in a
directory
> > other than /opt ??? Any suggestions will be GREATLY appreciated
!!!!!
On Sat, 7 Jul 2001, Gary Sakimoto wrote:> > > > > Good Morning, > > When trying to run configure for openssh (2.5.1p1 or 2.5.1p2 > > or 2.5.2p1 or 2.9p2), it fails and tells me that I need to install > > ZLIB. Zlib has been configured, made, made tested and made > > installed into /opt/zlib (default) and IS already installed. I > > am running hpux 11.00, have zlib 1.1.3 , openssl 0.9.6 , perl > > 5.005_03 and am running HP ansi C for 11.00. Is OpenSSH configure > > looking for the ZLib to be in a directory other than /opt ???You might need something like: CPPFLAGS="-I/path/to/zlib/includes" LDFLAGS="-L/path/to/zlib/lib" \ ./configure [options] Otherwise have a look in config.log to see what went wrong. -d -- | Damien Miller <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / distributed filesystem'' - Dan Geer