Re: only installing shared versions of some libs

2013-12-10 Thread Diego Elio Pettenò
That's not the correct way to do that. Yes, libtool is a prerequisite and you need -shared, but it should be in _LDFLAGS. But more importantly you want -module and -avoid-version. My Autotools Mythbuster guide has a section dedicated to building plugins: https://www.flameeyes.eu/autotools-mythbust

Re: only installing shared versions of some libs

2013-12-10 Thread Václav Zeman
On 10 December 2013 09:47, Daniel Pocock wrote: > > > I've recently adapted a project to support DSO plugins/modules > > The existing project includes normal libraries and binaries. In a > normal build, we want to > > a) build and install the shared and static versions of the normal libraries > >

only installing shared versions of some libs

2013-12-10 Thread Daniel Pocock
I've recently adapted a project to support DSO plugins/modules The existing project includes normal libraries and binaries. In a normal build, we want to a) build and install the shared and static versions of the normal libraries b) only install the shared versions of the plugins I don't min