Re: Success: Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-24 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Fri, 23 Apr 2004 08:15:22 -0700 (PDT), Mike Ryerse <[EMAIL PROTECTED]> said: mikeryerse> So do you think that if I would have re-installed curl and mikeryerse> made sure that it used libssl.so.0.9.7 instead of mikeryerse> libssl.so.2 (and the same for libcrypto.*

Re: Success: Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-23 Thread Mike Ryerse
So do you think that if I would have re-installed curl and made sure that it used libssl.so.0.9.7 instead of libssl.so.2 (and the same for libcrypto.*) that PHP might have worked? --- Richard Levitte - VMS Whacker <[EMAIL PROTECTED]> wrote: > In message <[EMAIL PROTECTED]> on > Thu, 22 Apr 2004 22

Re: Success: Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-23 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Thu, 22 Apr 2004 22:38:33 -0700 (PDT), Mike Ryerse <[EMAIL PROTECTED]> said: mikeryerse> I was able to finally get php-4.3.7-devel loaded into mikeryerse> apache by removing my install of openssl-0.9.7d (by mikeryerse> deleting /usr/local/ssl) and then installing

Success: Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-22 Thread Mike Ryerse
I was able to finally get php-4.3.7-devel loaded into apache by removing my install of openssl-0.9.7d (by deleting /usr/local/ssl) and then installing openssl-0.9.6b-35.7.i386.rpm with 'rpm -Uvh --force' and installing openssl-devel-0.9.6b-35.7.i386.rpm with 'rpm -ivh --force'. Apparently the versi

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-22 Thread Mike Ryerse
I am not sure that it is a problem with PHP. I think that it might have something to do with me trying to install openssl-0.9.7d on Redhat 7.3, and I think perhaps Redhat has made some changes from how openssl works on 7.3. I read somewhere that Redhat says building openssl-0.9.7d with all option

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 21 Apr 2004 12:57:40 -0700 (PDT), Mike Ryerse <[EMAIL PROTECTED]> said: mikeryerse> I have a question about your reponse: mikeryerse> If php is finding /usr/local/ssl/include/evp.h but using mikeryerse> /lib/libssl.so instead of /usr/local/ssl/lib/libssl.so,

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 21 Apr 2004 13:23:44 -0700 (PDT), Mike Ryerse <[EMAIL PROTECTED]> said: mikeryerse> I was looking at the install instructions for mikeryerse> openssl-0.9.7d and it said that after running ./configure, mikeryerse> and then make, that some *.a files are instal

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Eric Morris
oh, you need to run that command on the ACTUAL library file, not a link so nm /lib/libssl.so.x.y.z ... - Eric Morris Eric Morris wrote: Try the following command: nm /lib/libssl.so | grep OPENSSL_add_all_algorithms_noconf 'nm' shows the symbolic names in an archive or library file, and

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Eric Morris
Try the following command: nm /lib/libssl.so | grep OPENSSL_add_all_algorithms_noconf 'nm' shows the symbolic names in an archive or library file, and 'grep' finds the symbol you want (assuming it's there...) - Eric Morris Mike Ryerse wrote: I was looking at the install instructions for open

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Mike Ryerse
I was looking at the install instructions for openssl-0.9.7d and it said that after running ./configure, and then make, that some *.a files are installed in /usr/local/ssl/lib, not *.so files. Also, It seems that when I build openssl-0.9.7d, it seems to show that /lib/libssl.so* was modified. Is t

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Mike Ryerse
I have a question about your reponse: If php is finding /usr/local/ssl/include/evp.h but using /lib/libssl.so instead of /usr/local/ssl/lib/libssl.so, how do I link php to the correct lib? I thought about moving/renaming /lib/libssl.so, but since it seems to be linked to /lib/libssl.so.x.y.z, I

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Richard Levitte - VMS Whacker
OK, a few points: The way you configured OpenSSL, the library files ended up in /usr/local/ssl/lib. Also, they are named libcrypto.so.x.y.zt and libssl.so.x.y.zt with the symbolic links libcrypto.so.0 and libssl.so.0 (note, ending with 0, not 2) as well as libcrypto.so and libssl.so. This I know

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-21 Thread Mike Ryerse
I had tried building openssl with ./config shared before you suggested it, and after that I tried ./configure for php and it failed on db3 and imap (I have more to the ./configure command for php than I mentioned, just wanted to save email space for everyone). I ended up re-installing db3 and imap

Re: cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-20 Thread Richard Levitte - VMS Whacker
Well, several things may be going on here. To begin with, you have only built the static libraries for OpenSSL. To get shared libraries as well, you need to configure like this: ./config shared And that will only produce shared libraries where we support it. However, that SHOULDN'T make a di

cannot compile openssl-0.9.7d into php-4.3.6 with apache-1.3.27 on Redhat 7.3

2004-04-20 Thread Mike Ryerse
Command for installing openssl-0.9.7d.tar.gz: ./config make make install Command for php-4.3.6: ./configure --with-openssl=/usr/local/ssl make make install Then when starting apache I get the following: Syntax error on line 264 of /etc/httpd/conf/httpd.conf: Cannot load /usr/lib/apache/libphp4.so