mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
compat: wrap math.h to avoid AIX-specific clashes
AIX defines a class() function in its math.h header without any guard.
This commit is contained in:
parent
0420c810ce
commit
d3635f3ab0
14
compat/aix/math.h
Normal file
14
compat/aix/math.h
Normal file
@ -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 */
|
Loading…
Reference in New Issue
Block a user