On 2014-02-07 21:00:03 +0100, Diego Biurrun wrote:
> 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

argh, /me stabs his editor

Janne

---8<---
---
 configure | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/configure b/configure
index 7a305c3..f3ca7dc 100755
--- a/configure
+++ b/configure
@@ -4208,6 +4208,18 @@ elif enabled_any msvc icl; then
     fi
 fi
 
+case $as_type in
+    clang)
+        add_asflags -Qunused-arguments
+    ;;
+esac
+
+case $ld_type in
+    clang)
+        check_ldflags -Qunused-arguments
+    ;;
+esac
+
 case $target_os in
     osf1)
         enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
-- 
1.8.5.3

_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to