Re: [libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Diego Biurrun
On 2013-07-11 17:24, Martin Storsjö wrote: On Thu, 11 Jul 2013, Diego Biurrun wrote: On 2013-07-11 16:23, Martin Storsjö wrote: --- a/configure +++ b/configure @@ -3405,6 +3406,8 @@ unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; EOF od -t x1 $TMPO | grep -q '42 *49 *47 *45' &

Re: [libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Martin Storsjö
On Thu, 11 Jul 2013, Diego Biurrun wrote: Check for support of ..? I'd say 'support for' is just as correct, so I'm keeping it like this. (I also checked a few dictionaries and didn't found anything telling me otherwise.) On 2013-07-11 16:23, Martin Storsjö wrote: --- a/configure +++ b/

Re: [libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Diego Biurrun
Check for support of ..? On 2013-07-11 16:23, Martin Storsjö wrote: --- a/configure +++ b/configure @@ -3405,6 +3406,8 @@ unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; EOF od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian +check_inline_asm inline_asm_labels '"1:

[libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Martin Storsjö
Use this for enabling the ppc timer.h implementation only on assemblers that support labels in the inline assembly. --- configure |3 +++ libavutil/ppc/timer.h |6 ++ 2 files changed, 9 insertions(+) diff --git a/configure b/configure index e1edbe6..0e6b450 100755 --- a/co