Hi,

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).

Your workaround will create .sl libraries. But I wanted to have .so
libraries.

My architecture is IA-64.

I tried fixing this issue by changing the following.

File : Makefile.shared
Line: # 458
Before : expr "$(CFLAGS)" : 'DSO_DLFCN' > /dev/null &&
SHLIB=lib$(LIBNAME).so; \
After  : expr "$(CFLAGS)" : '.*DSO_DLFCN.*' > /dev/null &&
SHLIB=lib$(LIBNAME).so; \

It worked for me. The bug was in the evaluation of the command 'expr'. Still
I like to know whether this is a *CORRECT* fix.

Thanks for your support.

regards,
Haridharan

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

Reply via email to