summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-10-30 02:54:25 +0100
committerDiego Biurrun <diego@biurrun.de>2012-11-02 14:38:00 +0100
commit012f73e271638430e035ca68f5803dc2356d6a3e (patch)
treee280b0bb9465c1c4ac073fa23fe33a3d37a9a6ea /libavutil
parente1c804d883f3cca1b492147a2ac5d0aea7460076 (diff)
x86inc: Only define program_name if the macro is unset
This allows overriding the value from outside of the file.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/x86/x86inc.asm4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm
index 1fe9f5550c..b0df2b20f0 100644
--- a/libavutil/x86/x86inc.asm
+++ b/libavutil/x86/x86inc.asm
@@ -34,7 +34,9 @@
; as this feature might be useful for others as well. Send patches or ideas
; to x264-devel@videolan.org .
-%define program_name ff
+%ifndef program_name
+ %define program_name ff
+%endif
%define WIN64 0
%define UNIX64 0