summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-07-05 10:50:02 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-07-05 11:11:06 (GMT)
commit47ca9f041cde277f9282da8116113a7117963ab6 (patch)
tree67e90b82629f32f2c9e6ed6f3b3e82c626b19545
parent8fdec02fd1951dd8eb5cf6accd890d66b766edb3 (diff)
parentd3635f3ab0a234c830dfb4ddb9c6a4ea2677dace (diff)
downloadffmpeg-47ca9f041cde277f9282da8116113a7117963ab6.zip
ffmpeg-47ca9f041cde277f9282da8116113a7117963ab6.tar.gz
ffmpeg-47ca9f041cde277f9282da8116113a7117963ab6.tar.bz2
Merge remote-tracking branch 'qatar/master'
* qatar/master: compat: wrap math.h to avoid AIX-specific clashes Conflicts: configure See: bf18abb2eb79c00c69f6f83ede64536e3297793c, 0915b531bc62440914710d2989813563b0446c5e Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-rw-r--r--compat/aix/math.h14
-rwxr-xr-xconfigure1
2 files changed, 15 insertions, 0 deletions
diff --git a/compat/aix/math.h b/compat/aix/math.h
new file mode 100644
index 0000000..687525b
--- a/dev/null
+++ b/compat/aix/math.h
@@ -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 */
diff --git a/configure b/configure
index 0e1daae..54e46c8 100755
--- a/configure
+++ b/configure
@@ -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"