I simply have to use the latest cURL version (7.21.3) with PHP on my webserver. (Has to do with specific bug fixes)
It is not available by default on most current Linux variant repositories. (Natty Narwhal by Ubuntu is the only one and it's still in beta stages) - so I cannot simply run "aptitude install php5-curl" or similar to get it (the very latest version of cURL) installed.
How would one go about installing the very latest PHP + cURL packages?
Is it as simple as changing the to-download file for cURL in a repository somewhere? (ie. changing a text file's entry somewhere from http://curl.haxx.se/download/curl-7.21.0.tar.gz to http://curl.haxx.se/download/curl-7.21.3.tar.gz or something..?)
Basically I need the very latest cURL library running with PHP on Linux. How would you personally go about doing that?
Add natty repository:
Create /etc/apt/preferences(change lucid, to your release):
Install last php5-curl:
Test(curl_version):
or download php5 and curl source codes and build.