I want compile php-5.6.15
with custom version of libcurl
. Why? There was a bug with curl
which makes some https requests failed. My distro's repositories contains just version with bug. So I guess I need to make such steps as:
- compile
curl
dependencies(libssl
) - compile
curl
with those dependencies - compile
php
with customcurl
My main problem is that I'm not allowed to use package manager and need to specify custom build directory, custom directory for dependencies, and so on and so forth.
So the question is: how I can achieve this? Any help appreciated!