hp-pa2.0W HP-UX 11.0 pl6/00 /opt/zlib (1.1.3) /opt/openssl (0.9.6) (tried sh and ksh) CFLAGS="-O -Ae" LIBS="-L/opt/zlib/lib" ./configure --prefix=/opt \ --with-pid-dir=/var/run --with-ipv4-default --with-ssl-dir=/opt/openssl States it is unable to find openssl. Anyone worked around this already? I would think it has problems compiling the piece of test-code, but I have no idea how to track this down... any suggestions? And well, there is a mini bug in line 1612: LIBS="-lz $LIBS" should imho read LIBS="$LIBS -lz" Greetings, vt -- V. T. Mueller UCC Freiburg, Germany vtmue (at) uni-freiburg.de "Windows: Written by Morons for Morons"
On Fri, 13 Oct 2000, V. T. Mueller wrote:> > hp-pa2.0W > HP-UX 11.0 pl6/00 > /opt/zlib (1.1.3) > /opt/openssl (0.9.6) > (tried sh and ksh) > > CFLAGS="-O -Ae" LIBS="-L/opt/zlib/lib" ./configure --prefix=/opt \ > --with-pid-dir=/var/run --with-ipv4-default --with-ssl-dir=/opt/openssl > > States it is unable to find openssl. Anyone worked around this > already? I would think it has problems compiling the piece of > test-code, but I have no idea how to track this down... any > suggestions?Check the last few lines of config.log, they usually contain a clue as to why things fail.> And well, there is a mini bug in line 1612: > > LIBS="-lz $LIBS" > should imho read > LIBS="$LIBS -lz"(I presume you refer to configure) This is automatically generated by autoconf. What problem does the above cause? -d -- | ``The power of accurate observation is | Damien Miller <djm at mindrot.org> | commonly called cynicism by those who | @Work <djm at ibs.com.au> | have not got it'' - George Bernard Shaw | http://www.mindrot.org
Hi, Thanks for the pointer to config.log... now I made it compile and have a running ssh client (please see appended mail). Any ideas how to fix sshd? sshd exits and logs the following to syslog: sshd[201]: Accepted password for ROOT from 0.0.0.0 port 0 vmunix: System call 76 (vhangup) was called in a kernel where the type of at least one of its arguments is currently unspecified. This is a problem that must be fixed by the owner of the system call before the kernel can be released. The process was pid 220 (sshd). sshd[201]: Disconnecting: Command terminated on signal 12. -