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>
pull/27/head
Michael Niedermayer 12 years ago
commit 47ca9f041c
  1. 14
      compat/aix/math.h
  2. 1
      configure

@ -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 */

1
configure vendored

@ -3401,6 +3401,7 @@ enabled spic && enable_weak pic
# OS specific
case $target_os in
aix)
add_cppflags '-I\$(SRC_PATH)/compat/aix'
;;
haiku)
prefix_default="/boot/common"

Loading…
Cancel
Save