Aaron,
Would you recommend just downloading and installing a pre-built
openSSL package from openssl.org?
Thanks,
Dave Henderson
MCP, MCSA, MCSE, A+
Distributed Computer Systems Analyst
Florida Department of Corrections
Phone: 407.207.7391 Suncom: 343.7391
-----Original Message-----
From: Aaron Richton [mailto:[EMAIL PROTECTED]
Sent: Friday, October 14, 2005 9:12 AM
To: Henderson, David
Cc: [EMAIL PROTECTED]; [email protected]
Subject: RE: installation problems
> /usr/local/lib//libcrypto.a(dso_dlfcn.o)(.text+0x45): In function
> `dlfcn_load':
> : undefined reference to `dlopen'
It looks like your libcrypto.a has references to dl*(). On lots of systems
these functions are provided by a "libdl." Also, on lots of systems, these
functions are only available from shared objects (i.e. ".so" libraries and
not ".a" libraries.)
It's obvious that you're doing your own build of OpenSSL. I would try and
rework that into a shared library build. Failing that, you can try and
figure out a way to put a "-ldl" on that line to get libdl in there.