Просмотр исходного кода

compat: wrap math.h to avoid AIX-specific clashes

AIX defines a class() function in its math.h header without any
guard.
Luca Barbato 11 лет назад
Родитель
Сommit
d3635f3ab0
2 измененных файлов с 17 добавлено и 0 удалено
  1. 14 0
      compat/aix/math.h
  2. 3 0
      configure

+ 14 - 0
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 */

+ 3 - 0
configure

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