diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-03-21 01:35:11 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-03-21 01:35:11 +0000 |
commit | b937d8ed3acb4a8518143a150b27273cbe754aef (patch) | |
tree | b8f0ab14cb52c062fd1729d903646bc0a604d790 /media-gfx/tuxpaint/files | |
parent | Fix ChangeLog entry (diff) | |
download | historical-b937d8ed3acb4a8518143a150b27273cbe754aef.tar.gz historical-b937d8ed3acb4a8518143a150b27273cbe754aef.tar.bz2 historical-b937d8ed3acb4a8518143a150b27273cbe754aef.zip |
Patch for 0.9.13-r1. Resolves bug #82598.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'media-gfx/tuxpaint/files')
-rw-r--r-- | media-gfx/tuxpaint/files/tuxpaint-0.9.13-fix_error_directives.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-gfx/tuxpaint/files/tuxpaint-0.9.13-fix_error_directives.patch b/media-gfx/tuxpaint/files/tuxpaint-0.9.13-fix_error_directives.patch new file mode 100644 index 000000000000..f63f4d42e27d --- /dev/null +++ b/media-gfx/tuxpaint/files/tuxpaint-0.9.13-fix_error_directives.patch @@ -0,0 +1,36 @@ +diff -NurdB tuxpaint-0.9.13-orig/src/tuxpaint.c tuxpaint-0.9.13/src/tuxpaint.c +--- tuxpaint-0.9.13-orig/src/tuxpaint.c 2005-03-20 20:19:44.000000000 -0500 ++++ tuxpaint-0.9.13/src/tuxpaint.c 2005-03-20 20:20:17.000000000 -0500 +@@ -165,32 +165,11 @@ + #endif + + #include "SDL_image.h" +-#ifndef _IMG_h +-#error "---------------------------------------------------" +-#error "If you installed SDL_image from a package, be sure" +-#error "to get the development package, as well!" +-#error "(e.g., 'libsdl-image1.2-devel.rpm')" +-#error "---------------------------------------------------" +-#endif + + #include "SDL_ttf.h" +-#ifndef _SDLttf_h +-#error "---------------------------------------------------" +-#error "If you installed SDL_ttf from a package, be sure" +-#error "to get the development package, as well!" +-#error "(e.g., 'libsdl-ttf1.2-devel.rpm')" +-#error "---------------------------------------------------" +-#endif + + #ifndef NOSOUND + #include "SDL_mixer.h" +-#ifndef _MIXER_H_ +-#error "---------------------------------------------------" +-#error "If you installed SDL_mixer from a package, be sure" +-#error "to get the development package, as well!" +-#error "(e.g., 'libsdl-mixer1.2-devel.rpm')" +-#error "---------------------------------------------------" +-#endif + #endif + + #ifndef SAVE_AS_BMP |