summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/autotrace/files/autotrace-0.31.1-bool.patch')
-rw-r--r--media-gfx/autotrace/files/autotrace-0.31.1-bool.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-bool.patch b/media-gfx/autotrace/files/autotrace-0.31.1-bool.patch
new file mode 100644
index 000000000000..447f10c735ad
--- /dev/null
+++ b/media-gfx/autotrace/files/autotrace-0.31.1-bool.patch
@@ -0,0 +1,12 @@
+--- types.h.old 2011-03-03 13:56:30.000000000 +0000
++++ types.h 2011-03-03 13:59:45.000000000 +0000
+@@ -25,6 +25,9 @@
+ #ifndef bool
+ typedef enum { false = 0, true = 1 } at_bool;
+ #else
++#ifdef __ALTIVEC__
++#include <stdbool.h>
++#endif
+ #define at_bool bool
+ #endif
+ #else