diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-07-04 21:53:08 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-07-04 21:54:32 +0200 |
commit | d3635f3ab0a234c830dfb4ddb9c6a4ea2677dace (patch) | |
tree | c6243a135a0b7dbcc5c5bcdffbbdcfc032724a34 /compat | |
parent | 0420c810ceb430003f9f2793c5cfa1fe84657f3d (diff) | |
download | ffmpeg-streaming-d3635f3ab0a234c830dfb4ddb9c6a4ea2677dace.zip ffmpeg-streaming-d3635f3ab0a234c830dfb4ddb9c6a4ea2677dace.tar.gz |
compat: wrap math.h to avoid AIX-specific clashes
AIX defines a class() function in its math.h header without any
guard.
Diffstat (limited to 'compat')
-rw-r--r-- | compat/aix/math.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/compat/aix/math.h b/compat/aix/math.h new file mode 100644 index 0000000..7c8134c --- /dev/null +++ b/compat/aix/math.h @@ -0,0 +1,14 @@ +/* + * Workaround aix-specific class() function clashing with libav class usage + */ + +#ifndef COMPAT_AIX_MATH_H +#define COMPAT_AIX_MATH_H + +#define class class_in_math_h_causes_problems + +#include_next <math.h> + +#undef class + +#endif /* COMPAT_AIX_MATH_H */ |