You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: compat: wrap math.h to avoid AIX-specific clashes Conflicts: configure See:bf18abb2eb
,0915b531bc
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
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 ffmpeg 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 */
|
Reference in New Issue
Block a user