Browse Source

x86inc: Only define program_name if the macro is unset

This allows overriding the value from outside of the file.
tags/n1.1
Diego Biurrun 12 years ago
parent
commit
012f73e271
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavutil/x86/x86inc.asm

+ 3
- 1
libavutil/x86/x86inc.asm View File

@@ -34,7 +34,9 @@
; as this feature might be useful for others as well. Send patches or ideas ; as this feature might be useful for others as well. Send patches or ideas
; to x264-devel@videolan.org . ; to x264-devel@videolan.org .


%define program_name ff
%ifndef program_name
%define program_name ff
%endif


%define WIN64 0 %define WIN64 0
%define UNIX64 0 %define UNIX64 0


Loading…
Cancel
Save