[PHP] zlib problem

2001-05-04 Thread Jeroen Geusebroek

Hi there,

I'm trying to compile php 4.0.5 with zlib support, but i can't get it to
work.

I'm using Mandrake Linux version 8, and tried to use their zlib packages,
but
i also tried to compile the zlib packege myself (which went well).

Php always says:
Configure: error: Zlib module requires zlib >= 1.0.9.

Needless to say, i am using a version higher then 1.0.9.

I would appreciate it if someone good give me some help. I did not
have this problem with PHP 4.04.

Thanks,

Jeroen Geusebroek

P.s. please CC me in your reply, because at the moment i'm not subscribed to
the
list.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] zlib problem

2001-05-05 Thread Yasuo Ohgaki

""Jeroen Geusebroek"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Php always says:
> Configure: error: Zlib module requires zlib >= 1.0.9.
>
> Needless to say, i am using a version higher then 1.0.9.

Sound like configure script cannot find your zlib.
Where did you install the lib? ld.so.conf has directory for the lib?
Did you run ldconfig?

Regards,
--
Yasuo Ohgaki


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] zlib problem

2001-05-05 Thread Kees Hoekzema

hi Jeroen,

first, try to compile zlib like this:

gunzip -c zlib-1.1.3.tar.gz | tar xf -;  \
mv zlib-1.1.3/ zlib;  \
cd zlib; \
./configure --static ; \
make;  \
cd ..

then compile php 4.0.5 with the
--with-zlib=../zlib directive in the ./configure
that worked for me :)

Kees Hoekzema
[EMAIL PROTECTED]

Sysadmin of
www.tweakers.net www.fokzine.net www.realgamer.nl

-Oorspronkelijk bericht-
Van: Jeroen Geusebroek [mailto:[EMAIL PROTECTED]]
Verzonden: zaterdag 5 mei 2001 2:33
Aan: [EMAIL PROTECTED]
Onderwerp: [PHP] zlib problem


Hi there,

I'm trying to compile php 4.0.5 with zlib support, but i can't get it to
work.

I'm using Mandrake Linux version 8, and tried to use their zlib packages,
but
i also tried to compile the zlib packege myself (which went well).

Php always says:
Configure: error: Zlib module requires zlib >= 1.0.9.

Needless to say, i am using a version higher then 1.0.9.

I would appreciate it if someone good give me some help. I did not
have this problem with PHP 4.04.

Thanks,

Jeroen Geusebroek

P.s. please CC me in your reply, because at the moment i'm not subscribed to
the
list.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]