[FFmpeg-cvslog] x86inc.asm: fix typo.

Ronald S. Bultje git at videolan.org
Sat Jan 28 08:04:57 CET 2012


ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Fri Jan 27 10:50:12 2012 +0800| [412b248edb43d435e31d7502e49b9ba9cad50b2d] | committer: Ronald S. Bultje

x86inc.asm: fix typo.

Assemblers don't understand ! in %if statements.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=412b248edb43d435e31d7502e49b9ba9cad50b2d
---

 libavutil/x86/x86inc.asm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm
index 9bbe446..06a1c9f 100644
--- a/libavutil/x86/x86inc.asm
+++ b/libavutil/x86/x86inc.asm
@@ -83,7 +83,7 @@
 
 %if WIN64
     %define PIC
-%elif !ARCH_X86_64
+%elif ARCH_X86_64 == 0
 ; x86_32 doesn't require PIC.
 ; Some distros prefer shared objects to be PIC, but nothing breaks if
 ; the code contains a few textrels, so we'll skip that complexity.



More information about the ffmpeg-cvslog mailing list