diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-07 09:21:41 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-07 09:21:41 +0000 |
commit | 45a8592920801c1caa2e55a731e94cd6ba744ea2 (patch) | |
tree | 24e668c31bdbb6b963bb524fb8eea906a052dea3 /games-engines/love/files | |
parent | Big file removed (diff) | |
download | gentoo-2-45a8592920801c1caa2e55a731e94cd6ba744ea2.tar.gz gentoo-2-45a8592920801c1caa2e55a731e94cd6ba744ea2.tar.bz2 gentoo-2-45a8592920801c1caa2e55a731e94cd6ba744ea2.zip |
EAPI 5 - Fix build with freetype2
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-engines/love/files')
-rw-r--r-- | games-engines/love/files/love-0.8.0-freetype2.patch | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/games-engines/love/files/love-0.8.0-freetype2.patch b/games-engines/love/files/love-0.8.0-freetype2.patch new file mode 100644 index 000000000000..64e42c5f2840 --- /dev/null +++ b/games-engines/love/files/love-0.8.0-freetype2.patch @@ -0,0 +1,48 @@ +--- src/modules/font/freetype/TrueTypeRasterizer.h.old 2015-01-07 09:49:39.394000727 +0100 ++++ src/modules/font/freetype/TrueTypeRasterizer.h 2015-01-07 09:50:28.846065847 +0100 +@@ -27,10 +27,10 @@ + + // TrueType2 + #include <ft2build.h> +-#include <freetype/freetype.h> +-#include <freetype/ftglyph.h> +-#include <freetype/ftoutln.h> +-#include <freetype/fttrigon.h> ++#include <freetype.h> ++#include <ftglyph.h> ++#include <ftoutln.h> ++#include <fttrigon.h> + + namespace love + { +@@ -67,4 +67,4 @@ + } // font + } // love + +-#endif // LOVE_FONT_FREETYPE_TRUE_TYPE_RASTERIZER_H +\ No newline at end of file ++#endif // LOVE_FONT_FREETYPE_TRUE_TYPE_RASTERIZER_H +--- src/modules/font/freetype/Font.h.old 2015-01-07 09:49:20.421359400 +0100 ++++ src/modules/font/freetype/Font.h 2015-01-07 09:50:02.076571918 +0100 +@@ -30,10 +30,10 @@ + #else + #include <ft2build.h> + #endif +-#include <freetype/freetype.h> +-#include <freetype/ftglyph.h> +-#include <freetype/ftoutln.h> +-#include <freetype/fttrigon.h> ++#include <freetype.h> ++#include <ftglyph.h> ++#include <ftoutln.h> ++#include <fttrigon.h> + + namespace love + { +@@ -73,4 +73,4 @@ + } // font + } // love + +-#endif // LOVE_FONT_FREETYPE_FONT_H +\ No newline at end of file ++#endif // LOVE_FONT_FREETYPE_FONT_H |