Hello,

> I tried installing OpenSSL 0.9.8b in HP-UX.
> 
> I got the following error.
> 
> making install in engines...
> installing 4758cca
> cp: cannot access lib4758cca.so: No such file or directory
> installing aep
> cp: cannot access libaep.so: No such file or directory
> installing atalla
> cp: cannot access libatalla.so: No such file or directory
> installing cswift
> cp: cannot access libcswift.so: No such file or directory
> installing gmp
> cp: cannot access libgmp.so: No such file or directory
> installing chil
> cp: cannot access libchil.so: No such file or directory
> installing nuron
> cp: cannot access libnuron.so: No such file or directory
> installing sureware
> cp: cannot access libsureware.so: No such file or directory
> installing ubsec
> cp: cannot access libubsec.so: No such file or directory
> *** Error exit code 1
> 
> Stop.
> *** Error exit code 1
> 
> Stop.
> 
> And I looked into the engines/*.so. There was no file and they were created 
> in .sl extension.
> 
> Please help me.
> 
On HPUX engine libraries are build with .sl suffix
but makefile tries to install libraries with .so suffix.
You may reconfigure your installation with "no-hw" option
if you are not using engines on HPUX or go to the engine
directory and replace in Makefile line:
        *DSO_DLFCN*)   sfx="so";;
to:
        *DSO_DLFCN*)   sfx="sl";;
and rerun "make install" (temporary workaround).

Best regards,
-- 
Marek Marcola <[EMAIL PROTECTED]>

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [email protected]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to