On Fri, Feb 07, 2014 at 07:24:28PM +0100, Janne Grunau wrote: > --- > configure | 12 ++++++++++++ > 1 file changed, 12 insertions(+)
Why? A little bit more explanation would be appreciated. > --- a/configure > +++ b/configure > @@ -4208,6 +4208,18 @@ elif enabled_any msvc icl; then > fi > fi > > +case $ld_type in > + clang) > + check_ldflags -Qunused-arguments > + ;; > +esac > + > +case $as_type in > + clang) > + add_asflags -Qunused-arguments > + ;; > +esac stray tabs Switch the order of the two blocks so that the checks are compiler - assembler - linker which sort of makes more sense. Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
