I have 3 libraries liba.so, libb.so and libc.so
Liba.so and Libb.so are using libc.so.
In my application I use openssl 1.0.1, and libc.so is using an old version of openssl 0.9.8
To avoid the following warning :
libssl.so.0.9.8 needed by XXX libc.so may conflict with libssl.so.1.0.1
Could I use libc as static library?
Can liba.so and libb.so still correctly working if I use libc.a ?