diff options
author | Joseph Jezak <josejx@gentoo.org> | 2011-03-03 15:38:09 +0000 |
---|---|---|
committer | Joseph Jezak <josejx@gentoo.org> | 2011-03-03 15:38:09 +0000 |
commit | 77d274ac8accf670531074583a5337dbaa91d249 (patch) | |
tree | 85b1936c9898c98031dd0d640b21f9f5d940cced /media-gfx/autotrace/files | |
parent | Version bump to latest releases. (diff) | |
download | gentoo-2-77d274ac8accf670531074583a5337dbaa91d249.tar.gz gentoo-2-77d274ac8accf670531074583a5337dbaa91d249.tar.bz2 gentoo-2-77d274ac8accf670531074583a5337dbaa91d249.zip |
Added patch to allow building on PowerPC machines if altivec is enabled.
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/autotrace/files')
-rw-r--r-- | media-gfx/autotrace/files/autotrace-0.31.1-bool.patch | 12 |
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 |