Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-11-05 Thread Luca Barbato
On 05/11/2016 12:22, Diego Biurrun wrote: > If I listed all the functions that we use to check for libraries, I > don't know if you could correctly match them all to their > corresponding libraries. I certainly could not. Besides, the names of > these functions change more often than the library

Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-11-05 Thread Diego Biurrun
On Fri, Nov 04, 2016 at 12:43:51AM +0100, Janne Grunau wrote: > On 2016-10-25 23:30:50 +0200, Diego Biurrun wrote: > > On Fri, Sep 09, 2016 at 08:08:55PM +0200, Janne Grunau wrote: > > > On 2016-09-05 20:31:39 +0200, Diego Biurrun wrote: > > > > Previously all external library dependencies were

Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-11-03 Thread Janne Grunau
On 2016-10-25 23:30:50 +0200, Diego Biurrun wrote: > On Fri, Sep 09, 2016 at 08:08:55PM +0200, Janne Grunau wrote: > > On 2016-09-05 20:31:39 +0200, Diego Biurrun wrote: > > > Previously all external library dependencies were added as link-time > > > dependencies to all components. This adds bogus

Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-10-25 Thread Luca Barbato
On 25/10/2016 23:30, Diego Biurrun wrote: > +case $cfg in > +*coder|*parser|*bsf) > +add_extralibs_lib avcodec $dep_extralibs ;; > +*muxer) > +add_extralibs_lib avformat $dep_extralibs ;; > +

Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-10-25 Thread Diego Biurrun
On Fri, Sep 09, 2016 at 08:08:55PM +0200, Janne Grunau wrote: > On 2016-09-05 20:31:39 +0200, Diego Biurrun wrote: > > Previously all external library dependencies were added as link-time > > dependencies to all components. This adds bogus dependencies to some > > components, so only add

Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-09-09 Thread Diego Biurrun
On Fri, Sep 09, 2016 at 08:08:55PM +0200, Janne Grunau wrote: > On 2016-09-05 20:31:39 +0200, Diego Biurrun wrote: > > Previously all external library dependencies were added as link-time > > dependencies to all components. This adds bogus dependencies to some > > components, so only add

Re: [libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-09-09 Thread Janne Grunau
On 2016-09-05 20:31:39 +0200, Diego Biurrun wrote: > Previously all external library dependencies were added as link-time > dependencies to all components. This adds bogus dependencies to some > components, so only add dependencies to components if said components > actually make use of a

[libav-devel] [PATCH 5/5] [RFC] configure: more fine-grained link-time dependency settings

2016-09-05 Thread Diego Biurrun
Previously all external library dependencies were added as link-time dependencies to all components. This adds bogus dependencies to some components, so only add dependencies to components if said components actually make use of a dependency. --- This can still be improved a bit I guess. Better