Re: [PHP] --with-openssl on x64

2006-08-22 Thread Brad Bonkoski

Hmm..

in my system, /usr/lib is a sym link to /usr/lib64...

but..
Try this configure option:
--with-openssl[=DIR]
-B

Marten Lehmann wrote:

Hello,

openssl is compiled for x86 on my system, so the libs are in 
/usr/lib64 rather than /usr/lib. But configure only looks in /usr/lib 
and gives me


configure: error: Cannot find OpenSSL's libraries

How can I change this?

Regards
Marten



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] --with-openssl on x64

2006-08-22 Thread Richard Lynch
On Tue, August 22, 2006 8:34 am, Marten Lehmann wrote:
 openssl is compiled for x86 on my system, so the libs are in
 /usr/lib64
 rather than /usr/lib. But configure only looks in /usr/lib and gives
 me

 configure: error: Cannot find OpenSSL's libraries

 How can I change this?

If passing in the directory to ./configure doesn't work, file a bug
report, I guess...

And then standard work-around #1 for this is to set up symlinks from
where PHP thinks it is to where it really is and go on with life,
which might be why the other poster has those symlinks.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] --with-openssl on x64

2006-08-22 Thread Chris

Marten Lehmann wrote:

Hello,

openssl is compiled for x86 on my system, so the libs are in /usr/lib64 
rather than /usr/lib. But configure only looks in /usr/lib and gives me


configure: error: Cannot find OpenSSL's libraries



Just checked ./configure and it had this option:

--enable and --with options recognized:
  --with-libdir=NAME  Look for libraries in .../NAME rather than 
.../lib


not sure if that affects *all* options you want to build or you can tell 
it just openssl:


--with-openssl=/usr --with-libdir=/usr/lib64

worth a shot ;)

--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] --with-openssl on x64

2006-08-22 Thread Chris

Chris wrote:

Marten Lehmann wrote:

Hello,

openssl is compiled for x86 on my system, so the libs are in 
/usr/lib64 rather than /usr/lib. But configure only looks in /usr/lib 
and gives me


configure: error: Cannot find OpenSSL's libraries



Just checked ./configure and it had this option:

--enable and --with options recognized:
  --with-libdir=NAME  Look for libraries in .../NAME rather than 
.../lib


not sure if that affects *all* options you want to build or you can tell 
it just openssl:


--with-openssl=/usr --with-libdir=/usr/lib64

worth a shot ;)



oops that should be:

--with-openssl=/usr --with-libdir=lib64

--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php