|
|
|
|
||||||
| comp.info.servers.unix Web servers for UNIX platforms. |
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
I am running Solaris 10 I've installed libgcc 3.4.6 from SunFreeware libiconv 1.1.11 Openssl 0.9.8i mysql 5.0.67 php 5.2.6 Apache 2.0.63 Now I'm trying to re-configure apache2 to enable ssl (as I didn't know I'd use it the first time) # ./configure --enable-ssl --with-ssl=/usr/local/ssl/install/openssl #make I get the following error: X509_NAME_cmp modules/ssl/.libs/ mod_ssl.a(ssl_engine_init.o) SSL_CTX_set_tmp_rsa_callback modules/ssl/.libs/ mod_ssl.a(ssl_engine_init.o) X509_get_subject_name modules/ssl/.libs/ mod_ssl.a(ssl_engine_kernel.o) SSL_library_init modules/ssl/.libs/ mod_ssl.a(ssl_engine_init.o) ld: fatal: Symbol referencing errors. No output written to .libs/httpd collect2: ld returned 1 exit status *** Error code 1 make: Fatal error: Command failed for target `httpd' Current working directory /home/linnea/httpd-2.0.63 *** Error code 1 The following command caused the error: otarget=`echo all-recursive|sed s/-recursive//`; \ list=' srclib os server modules support'; \ for i in $list; do \ if test -d "$i"; then \ target="$otarget"; \ echo "Making $target in $i"; \ if test "$i" = "."; then \ made_local=yes; \ target="local-$target"; \ fi; \ (cd $i && make $target) || exit 1; \ fi; \ done; \ if test "$otarget" = "all" && test -z 'httpd '; then \ made_local=yes; \ fi; \ if test "$made_local" != "yes"; then \ make "local-$otarget" || exit 1; \ fi make: Fatal error: Command failed for target `all-recursive' I'm not a unix expert. I'm doing this as a learning experience but now I'm lost. My Path includes /usr/local/bin:/sbin:/usr/sbin:/usr/bin:/usr/ucb:/usr/ games:/usr/ccs/bin:/usr/openwin/bin:/usr/sfw/sbin:/usr/sfw/bin:/usr/ X11R6/bin Much thanks L. |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On 7 Oct, 20:00, lcudm...@gmail.com wrote:
> I am running Solaris 10 > I've installed > libgcc 3.4.6 from SunFreeware > libiconv 1.1.11 > Openssl 0.9.8i > mysql 5.0.67 > php 5.2.6 > > Apache 2.0.63 > > Now I'm trying to re-configure apache2 to enable ssl (as I didn't > know I'd use it the first time) > > # ./configure --enable-ssl --with-ssl=/usr/local/ssl/install/openssl > #make > > I get the following error: > <snip> > mod_ssl.a(ssl_engine_init.o) > ld: fatal: Symbol referencing errors. No output written to .libs/httpd what does echo $LIBS report? Might be a problem finding the SSL libs or more likely a bad combination of static and dynamic linking. C. |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
On Oct 8, 5:06 am, "C." <colin.mckin...@gmail.com> wrote:
> On 7 Oct, 20:00, lcudm...@gmail.com wrote: > > > > > I am running Solaris 10 > > I've installed > > libgcc 3.4.6 from SunFreeware > > libiconv 1.1.11 > > Openssl 0.9.8i > > mysql 5.0.67 > > php 5.2.6 > > > Apache 2.0.63 > > > Now I'm trying to re-configure apache2 to enable ssl (as I didn't > > know I'd use it the first time) > > > # ./configure --enable-ssl --with-ssl=/usr/local/ssl/install/openssl > > #make > > > I get the following error: > > <snip> > > mod_ssl.a(ssl_engine_init.o) > > ld: fatal: Symbol referencing errors. No output written to .libs/httpd > > what does echo $LIBS report? > > Might be a problem finding the SSL libs or more likely a bad > combination of static and dynamic linking. > > C. Hmmm. I get nothing with echo $LIBS Where should the libs be linked from and to? |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
On Oct 8, 9:21 am, lcudm...@gmail.com wrote:
> On Oct 8, 5:06 am, "C." <colin.mckin...@gmail.com> wrote: > > > > > On 7 Oct, 20:00, lcudm...@gmail.com wrote: > > > > I am running Solaris 10 > > > I've installed > > > libgcc 3.4.6 from SunFreeware > > > libiconv 1.1.11 > > > Openssl 0.9.8i > > > mysql 5.0.67 > > > php 5.2.6 > > > > Apache 2.0.63 > > > > Now I'm trying to re-configure apache2 to enable ssl (as I didn't > > > know I'd use it the first time) > > > > # ./configure --enable-ssl --with-ssl=/usr/local/ssl/install/openssl > > > #make > > > > I get the following error: > > > <snip> > > > mod_ssl.a(ssl_engine_init.o) > > > ld: fatal: Symbol referencing errors. No output written to .libs/httpd > > > what does echo $LIBS report? > > > Might be a problem finding the SSL libs or more likely a bad > > combination of static and dynamic linking. > > > C. > > Hmmm. I get nothing with echo $LIBS > > Where should the libs be linked from and to? so I linked /usr/local/ssl/lib to /lib confirmed in /lib that they ssl librarys are pointing to the /ssl/lib Still have make error. Thx L. |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
On 8 Oct, 17:35, lcudm...@gmail.com wrote:
> On Oct 8, 9:21 am, lcudm...@gmail.com wrote: > > > > > On Oct 8, 5:06 am, "C." <colin.mckin...@gmail.com> wrote: > > > > On 7 Oct, 20:00, lcudm...@gmail.com wrote: > > > > > I am running Solaris 10 > > > > I've installed > > > > libgcc 3.4.6 from SunFreeware > > > > libiconv 1.1.11 > > > > Openssl 0.9.8i > > > > mysql 5.0.67 > > > > php 5.2.6 > > > > > Apache 2.0.63 > > > > > Now I'm trying to re-configure apache2 to enable ssl (as I didn't > > > > know I'd use it the first time) > > > > > # ./configure --enable-ssl --with-ssl=/usr/local/ssl/install/openssl > > > > #make > > > > > I get the following error: > > > > <snip> > > > > mod_ssl.a(ssl_engine_init.o) > > > > ld: fatal: Symbol referencing errors. No output written to .libs/httpd > > > > what does echo $LIBS report? > > > > Might be a problem finding the SSL libs or more likely a bad > > > combination of static and dynamic linking. > > > > C. > > > Hmmm. I get nothing with echo $LIBS > > > Where should the libs be linked from and to? > > so I linked > > /usr/local/ssl/lib to /lib > confirmed in /lib that they ssl librarys are pointing to the /ssl/lib > > Still have make error. > > Thx L. Static (.a) or dynamic (.so)? (libcrypto and libssl are the key players here) C. |
|
![]() |
| Outils de la discussion | |
|
|