Thanks for the tip.  Making the modification to the Makefile in the
engines directory seems to have fixed my problem.  
I don't suppose anyone could explain to me why this was changed between
0.9.8a and 0.9.8b?  It just seems like it would be a change that would
be involved in bigger version bump than moving from a to b.  Thanks.
,
Josh.

> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Marek Marcola
> Sent: Monday, May 15, 2006 11:13 AM
> To: openssl-users@openssl.org
> Subject: Re: OpenSSL 0.9.8b build error
> 
> Hello,
> 
> > I'm trying to build OpenSSL 0.9.8b on HP Itanium and I'm 
> running into 
> > some problems during the make install step.  I'm didn't notice any 
> > errors during configure or make and make test passed.  I'm able to 
> > build 0.9.8a with the exact same steps.  Has anyone else seen this?
> > Any suggestions on what's wrong?  Thanks in advance.
> > ,
> > Josh.
> >  
> >  
> > Here are the steps I'm taking to build:
> >     ../Configure hpux-ia64-cc --openssldir=/home/hp/lib/opensslDist
> > threads shared
> >     make
> >     make test
> >     make install
> >  
> > Here is the error I'm getting in make install:
> >     
> >     making install in crypto/pqueue...
> >     making install in ssl...
> >     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.
> >     -bash-2.05b$
> On HPUX Itanium 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                    openssl-users@openssl.org
> Automated List Manager                           [EMAIL PROTECTED]
> 
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to