diff options
author | Sam Hocevar <sam+ffmpeg@zoy.org> | 2006-03-06 22:06:33 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-03-06 22:06:33 +0000 |
commit | 5f112e1f967d66ed33cea954e4573478f6598725 (patch) | |
tree | afd4787cc8e17b28efa8e9735fc7502c0e3c909b /libavutil | |
parent | 79c343c0243c869407b2e1673127f5580e31f582 (diff) | |
download | ffmpeg-5f112e1f967d66ed33cea954e4573478f6598725.tar.gz |
Proper mangling information for symbols in OS X Mach-O shared objects.
patch by Samuel Hocevar, sam ..at.. zoy ..dot.. org
Originally committed as revision 5120 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index f4dcf310b0..b2590c93a9 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -267,6 +267,8 @@ static inline float floorf(float f) { # else # if defined(ARCH_X86_64) && defined(PIC) # define MANGLE(a) #a"(%%rip)" +# elif defined(CONFIG_DARWIN) +# define MANGLE(a) "_" #a # else # define MANGLE(a) #a # endif |