Results 1 to 2 of 2
hey guys,
i have installed php from the freeware for solaris site.
But I have no zlib support so I guess I have to reinstall php again.
How do I ...
- 02-22-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 14
php with no zlib support
hey guys,
i have installed php from the freeware for solaris site.
But I have no zlib support so I guess I have to reinstall php again.
How do I do this, I have heard people say do ./configure with "-with-zlib=[dir]" option
but I dont have a configure script.
Any help will be appreciated.
- 02-25-2010 #2Just Joined!
- Join Date
- Feb 2010
- Posts
- 1
You should donwload source from http php.net/downloads.php
When you extract archive, you should cd to that dir, and run
That will list you every ./configure optionsCode:./configure --help
Since you need zlib support, you can also try this
You can find your zlib dir by doing this:Code:./configure --help | grep -i zlib
orCode:su -c updatedb locate zlib | less
After ./configure, doCode:whereis zlib
and your doneCode:make su -c "make install"


Reply With Quote