summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-10-19 16:12:13 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-10-19 16:12:13 +0000
commita5a67ae4b890edbdb127ec72b19ff5464fe75bbd (patch)
treee12e154736709565dc1aeab190b3501d112b58d4 /dev-games/crystalspace/files
parentRemove. Part of bug 330683. (diff)
downloadhistorical-a5a67ae4b890edbdb127ec72b19ff5464fe75bbd.tar.gz
historical-a5a67ae4b890edbdb127ec72b19ff5464fe75bbd.tar.bz2
historical-a5a67ae4b890edbdb127ec72b19ff5464fe75bbd.zip
old, part of bug 330683
Package-Manager: portage-2.2.0_alpha69/cvs/Linux x86_64
Diffstat (limited to 'dev-games/crystalspace/files')
-rw-r--r--dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch b/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch
deleted file mode 100644
index 2ee262d87d4f..000000000000
--- a/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-http://trac.crystalspace3d.org/trac/CS/ticket/803
-
---- plugins/video/loader/png/pngimage.cpp
-+++ plugins/video/loader/png/pngimage.cpp
-@@ -378,7 +378,7 @@
- const png_bytep iBuffer = dataSource->GetUint8();
- const size_t iSize = dataSource->GetSize();
-
-- if (!png_check_sig (iBuffer, (int)iSize))
-+ if (png_sig_cmp (iBuffer, 0, (int)iSize) != 0)
- return false;
- png = png_create_read_struct (PNG_LIBPNG_VER_STRING, 0, 0, 0);
- if (!png)