modssl intsllation problem

modssl intsllation problem

am 23.06.2006 10:00:37 von Arsen Hayrapetyan

Hello,

I am trying to install mod_ssl-2.8.27-1.3.36
and I've faced the following problem when I do 'make' in the
the directory where the apache's source resides:

.....
gcc -DLINUX=22 -DHAVE_SET_DUMPABLE -DMOD_SSL=208127 -DUSE_HSREGEX -DEAPI
-DNO_DL_NEEDED `./apaci` -L/home/ahairape/prereqs/openssl-0.9.8b \
-o httpd buildmark.o modules.o modules/standard/libstandard.a
modules/ssl/libssl.a main/libmain.a ./os/unix/libos.a ap/libap.a
regex/libregex.a -lm -lcrypt -lssl -lcrypto -lexpat
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x35):
In function `dlfcn_load':
: undefined reference to `dlopen'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x95):
In function `dlfcn_load':
: undefined reference to `dlclose'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0xbc):
In function `dlfcn_load':
: undefined reference to `dlerror'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x147):
In function `dlfcn_bind_var':
: undefined reference to `dlsym'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x172):
In function `dlfcn_bind_var':
: undefined reference to `dlerror'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x237):
In function `dlfcn_bind_func':
: undefined reference to `dlsym'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x262):
In function `dlfcn_bind_func':
: undefined reference to `dlerror'
/home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x52b):
In function `dlfcn_unload':
: undefined reference to `dlclose'

____________________________________________________________ _______________

I've done the following pre-installations:

openssl-0.9.8
apache-1.3.36

And I am following instructions in INSTALL file of mod_ssl to
configure it:

cd mod_ssl-2.8.27-1.3.36
../configure --with-apache=/home/cawebuser/apache_1.3.36 \
--with-ssl=/home/ahairape/prereqs/openssl-0.9.8b \
--prefix=/usr/local/apache-1.3.36

[Here '/home/ahairape/prereqs/openssl-0.9.8b'
is the directory where I've unpacked openssl,
'/home/cawebuser/apache_1.3.36' is the directory
where I've unpacked apache and
/usr/local/apache-1.3.36 is the directory
where the apache is installed]

cd /home/cawebuser/apache_1.3.36
make


Can anybody tell me the solution to this problem?

Thank you in advance,
Arsen.
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: modssl intsllation problem

am 27.06.2006 03:04:38 von dufresne

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Fri, 23 Jun 2006, Arsen Hayrapetyan wrote:

> Hello,
>
> I am trying to install mod_ssl-2.8.27-1.3.36
> and I've faced the following problem when I do 'make' in the
> the directory where the apache's source resides:
>
> ....
> gcc -DLINUX=22 -DHAVE_SET_DUMPABLE -DMOD_SSL=208127 -DUSE_HSREGEX -DEAPI
> -DNO_DL_NEEDED `./apaci` -L/home/ahairape/prereqs/openssl-0.9.8b \
> -o httpd buildmark.o modules.o modules/standard/libstandard.a
> modules/ssl/libssl.a main/libmain.a ./os/unix/libos.a ap/libap.a
> regex/libregex.a -lm -lcrypt -lssl -lcrypto -lexpat
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x35):
> In function `dlfcn_load':
> : undefined reference to `dlopen'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x95):
> In function `dlfcn_load':
> : undefined reference to `dlclose'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0xbc):
> In function `dlfcn_load':
> : undefined reference to `dlerror'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x147):
> In function `dlfcn_bind_var':
> : undefined reference to `dlsym'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x172):
> In function `dlfcn_bind_var':
> : undefined reference to `dlerror'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x237):
> In function `dlfcn_bind_func':
> : undefined reference to `dlsym'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x262):
> In function `dlfcn_bind_func':
> : undefined reference to `dlerror'
> /home/ahairape/prereqs/openssl-0.9.8b/libcrypto.a(dso_dlfcn. o)(.text+0x52b):
> In function `dlfcn_unload':
> : undefined reference to `dlclose'
>
> ____________________________________________________________ _______________
>
> I've done the following pre-installations:
>
> openssl-0.9.8


I thnk yer error rests here. One makes apache and mod-ssl together and
installs/configs as one application with a module loaded.

> apache-1.3.36
>
> And I am following instructions in INSTALL file of mod_ssl to
> configure it:
>
> cd mod_ssl-2.8.27-1.3.36
> ./configure --with-apache=/home/cawebuser/apache_1.3.36 \
> --with-ssl=/home/ahairape/prereqs/openssl-0.9.8b \
> --prefix=/usr/local/apache-1.3.36
>
> [Here '/home/ahairape/prereqs/openssl-0.9.8b'
> is the directory where I've unpacked openssl,
> '/home/cawebuser/apache_1.3.36' is the directory
> where I've unpacked apache and
> /usr/local/apache-1.3.36 is the directory
> where the apache is installed]
>
> cd /home/cawebuser/apache_1.3.36
> make
>
>
> Can anybody tell me the solution to this problem?
>


Thanks,


Ron DuFresne
- --
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
admin & senior security consultant: sysinfo.com
http://sysinfo.com
Key fingerprint = 9401 4B13 B918 164C 647A E838 B2DF AFCC 94B0 6629

....We waste time looking for the perfect lover
instead of creating the perfect love.

-Tom Robbins
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFEoIQost+vzJSwZikRApeAAKCOluoPwYNnVTfopjcdJ8GD4bxU9gCf e9Ns
uk5X6+qNGrDDxevv2SGU1IQ=
=SyPP
-----END PGP SIGNATURE-----
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org