In my project, I am trying to use two libraries those are already compiled and generated. Let us say liba.so(our own library created sometime back) and libssl.so.10.(It is available in the Linux).
Now liba.so is having dependency libcurl.so.3 & libssl.so.10 is having dependency libcurl.so.4 (latest)
Both libcurl.so.3 and libcurl.so.4 are available in the system.
Hence When I try to use both of them in my project, I am getting version conflict. Is it expected? If yes, how do I solve this problem?
Is there any way to modify liba.so dependency with latest libcurl.so.4 without building this library again? Or do I need to build liba.so again with latest libcurl.so.4?
Thanks for your help