summaryrefslogtreecommitdiff
path: root/testing/inkscape/libpng15.patch
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-05-26 13:37:37 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2012-05-26 13:37:37 +0200
commit978b7973febf9b1fee624681f33c805e4f04f5dd (patch)
tree73ae74deb425418dce2090020d169406e71d5b51 /testing/inkscape/libpng15.patch
parent6646a7a49f1ff4228204490260b3e0f0e12b5d3c (diff)
parenta5721a07196cf00c26ea1bfb651aab756d202ccb (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/lxappearance/PKGBUILD community/menu-cache/PKGBUILD extra/kdemultimedia/PKGBUILD extra/llvm/PKGBUILD extra/qt/PKGBUILD extra/qtwebkit/PKGBUILD extra/sqlite/PKGBUILD extra/wireshark/PKGBUILD multilib/lib32-llvm/PKGBUILD testing/mdadm/PKGBUILD testing/udev/PKGBUILD
Diffstat (limited to 'testing/inkscape/libpng15.patch')
-rw-r--r--testing/inkscape/libpng15.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/inkscape/libpng15.patch b/testing/inkscape/libpng15.patch
deleted file mode 100644
index e24913ed6..000000000
--- a/testing/inkscape/libpng15.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- inkscape-0.48.1/src/extension/internal/pdfinput/svg-builder.cpp
-+++ inkscape-0.48.1-mod//src/extension/internal/pdfinput/svg-builder.cpp
-@@ -1443,7 +1443,7 @@
- return NULL;
- }
- // Set error handler
-- if (setjmp(png_ptr->jmpbuf)) {
-+ if (setjmp(png_jmpbuf(png_ptr))) {
- png_destroy_write_struct(&png_ptr, &info_ptr);
- return NULL;
- }
---- inkscape-0.48.1/src/helper/png-write.cpp
-+++ inkscape-0.48.1-mod//src/helper/png-write.cpp
-@@ -165,7 +165,7 @@
- /* Set error handling. REQUIRED if you aren't supplying your own
- * error hadnling functions in the png_create_write_struct() call.
- */
-- if (setjmp(png_ptr->jmpbuf)) {
-+ if (setjmp(png_jmpbuf(png_ptr))) {
- /* If we get here, we had a problem reading the file */
- fclose(fp);
- png_destroy_write_struct(&png_ptr, &info_ptr);
---- inkscape-0.48.1/src/sp-image.cpp
-+++ inkscape-0.48.1-mod//src/sp-image.cpp
-@@ -386,9 +386,13 @@
-
- #if defined(PNG_iCCP_SUPPORTED)
- {
-- char* name = 0;
-+ png_charp name = 0;
- int compression_type = 0;
-- char* profile = 0;
-+#if (PNG_LIBPNG_VER < 10500)
-+ png_charp profile = 0;
-+#else
-+ png_bytep profile = 0;
-+#endif
- png_uint_32 proflen = 0;
- if ( png_get_iCCP(pngPtr, infoPtr, &name, &compression_type, &profile, &proflen) ) {
- // g_message("Found an iCCP chunk named [%s] with %d bytes and comp %d", name, proflen, compression_type);