kivy-ios/tools/patches/SDL_ttf-colorkey.patch
Mathieu Virbel f70b893790 sdl-ttf: fix compilation when we never installed SDL on our system. the current buidl was relying on the sdl-config that doesn't exist.
Instead, generate a fake sdl.pc for pkg-config, and use it when compiling the SDL_ttf. closes #15
2012-07-21 16:54:24 +02:00

21 lines
775 B
Diff

diff -Naur SDL_ttf-2.0.10/SDL_ttf.c SDL_ttf-2.0.10.orig/SDL_ttf.c
--- SDL_ttf-2.0.10.orig/SDL_ttf.c 2012-07-21 16:47:06.000000000 +0200
+++ SDL_ttf-2.0.10/SDL_ttf.c 2009-10-19 10:18:05.000000000 +0200
@@ -1336,7 +1336,7 @@
palette->colors[1].r = fg.r;
palette->colors[1].g = fg.g;
palette->colors[1].b = fg.b;
- SDL_SetColorKey( textbuf, SDL_SRCCOLORKEY, 0 );
+ SDL_SetColorKey( textbuf, SDL_TRUE, 0 );
/* check kerning */
use_kerning = FT_HAS_KERNING( font->face ) && font->kerning;
@@ -1461,7 +1461,7 @@
palette->colors[1].r = fg.r;
palette->colors[1].g = fg.g;
palette->colors[1].b = fg.b;
- SDL_SetColorKey(textbuf, SDL_SRCCOLORKEY, 0);
+ SDL_SetColorKey(textbuf, SDL_TRUE, 0);
/* Copy the character from the pixmap */
src = glyph->bitmap.buffer;