<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problems installing openssh in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447427#M9828</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I suppose the problem occurs because the libz file is in /usr/local/lib and that directory is not searched in for libraries.&lt;BR /&gt;&lt;BR /&gt;Isn't there an option to 'configure' to specify the path to zlib?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Rik</description>
    <pubDate>Sat, 23 Sep 2000 06:17:53 GMT</pubDate>
    <dc:creator>RikTytgat</dc:creator>
    <dc:date>2000-09-23T06:17:53Z</dc:date>
    <item>
      <title>Problems installing openssh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447426#M9827</link>
      <description>I opted for the Openssh, since I can use ssh instead of telnet, rlogin, etc. Unfortunately, I am encountering the following installation problem. Help! In the meantime, I am reading up on .netrc &lt;BR /&gt;&lt;BR /&gt;I have installed OpenSSL, egd, and zlib. However, when I start to install Openssh with the following command, I get the following error message: &lt;BR /&gt;&lt;BR /&gt;./configure --with-openssl-dir=/usr/local/ssl-withentropy-pool=/dev/random &lt;BR /&gt;&lt;BR /&gt;checking for HPUX trusted system password database... yes &lt;BR /&gt;configure: warning: This configuration is untested &lt;BR /&gt;checking for deflate in -lz... no &lt;BR /&gt;configure: error: *** zlib missing - please install first *** &lt;BR /&gt;&lt;BR /&gt;So I re-ftp'd and reinstalled the zlib.tar.gz file again and received the same error. I have copied the commands and the results of installing zlib below. Can anyone help with this? &lt;BR /&gt;&lt;BR /&gt;Thanks &lt;BR /&gt;&lt;BR /&gt;# ./configure &lt;BR /&gt;Checking for gcc... &lt;BR /&gt;Building static library libz.a version 1.1.3 with cc. &lt;BR /&gt;Checking for unistd.h... Yes. &lt;BR /&gt;Checking for errno.h... Yes. &lt;BR /&gt;Checking for mmap support... Yes. &lt;BR /&gt;# make &amp;amp;&amp;amp; make test &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c example.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c adler32.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c compress.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c crc32.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c gzio.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c uncompr.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c deflate.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c trees.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c zutil.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c inflate.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c infblock.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c inftrees.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c infcodes.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c infutil.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c inffast.c &lt;BR /&gt;ar rc libz.a adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -o example example.o -L. -lz &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -c minigzip.c &lt;BR /&gt;cc -O -DHAVE_UNISTD_H -DUSE_MMAP -o minigzip minigzip.o -L. -lz &lt;BR /&gt;hello world &lt;BR /&gt;uncompress(): hello, hello! &lt;BR /&gt;gzread(): hello, hello! &lt;BR /&gt;gzgets() after gzseek: hello! &lt;BR /&gt;inflate(): hello, hello! &lt;BR /&gt;large_inflate(): OK &lt;BR /&gt;after inflateSync(): hello, hello! &lt;BR /&gt;inflate with dictionary: hello, hello! &lt;BR /&gt;*** zlib test OK *** &lt;BR /&gt;# /bin/su &lt;BR /&gt;# make install &lt;BR /&gt;cp zlib.h zconf.h /usr/local/include &lt;BR /&gt;chmod 644 /usr/local/include/zlib.h /usr/local/include/zconf.h &lt;BR /&gt;cp libz.a /usr/local/lib &lt;BR /&gt;cd /usr/local/lib; chmod 755 libz.a &lt;BR /&gt;cd /usr/local/lib; if test -f libz.sl.1.1.3; then &lt;BR /&gt;rm -f libz.sl libz.sl.1; &lt;BR /&gt;ln -s libz.sl.1.1.3 libz.sl; &lt;BR /&gt;ln -s libz.sl.1.1.3 libz.sl.1; &lt;BR /&gt;(ldconfig || true) &amp;gt;/dev/null 2&amp;gt;&amp;amp;1; &lt;BR /&gt;fi &lt;BR /&gt;</description>
      <pubDate>Fri, 22 Sep 2000 21:35:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447426#M9827</guid>
      <dc:creator>Youlette Etienne_2</dc:creator>
      <dc:date>2000-09-22T21:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problems installing openssh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447427#M9828</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I suppose the problem occurs because the libz file is in /usr/local/lib and that directory is not searched in for libraries.&lt;BR /&gt;&lt;BR /&gt;Isn't there an option to 'configure' to specify the path to zlib?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Rik</description>
      <pubDate>Sat, 23 Sep 2000 06:17:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447427#M9828</guid>
      <dc:creator>RikTytgat</dc:creator>
      <dc:date>2000-09-23T06:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems installing openssh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447428#M9829</link>
      <description>If you did not already figure it out.  You need to copy the zlib.h and zconf.h file to /usr/include and libz.a file to /usr/lib.</description>
      <pubDate>Fri, 29 Sep 2000 22:00:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-installing-openssh/m-p/2447428#M9829</guid>
      <dc:creator>Michael Windbigler</dc:creator>
      <dc:date>2000-09-29T22:00:34Z</dc:date>
    </item>
  </channel>
</rss>

