Browse Source

Stefan Fiedler:


			
			
				rocklinux
			
			
		
Stefan Fiedler 18 years ago
parent
commit
fbf15cf65d
3 changed files with 0 additions and 1099 deletions
  1. +0
    -1040
      package/gnome2/gimp/gcc40.patch
  2. +0
    -31
      package/gnome2/gimp/gimp-2.2.11-libpng_fix-1.patch
  3. +0
    -28
      package/gnome2/gimp/gimpui-pc-missing-gimpmodule.patch

+ 0
- 1040
package/gnome2/gimp/gcc40.patch
File diff suppressed because it is too large
View File


+ 0
- 31
package/gnome2/gimp/gimp-2.2.11-libpng_fix-1.patch

@ -1,31 +0,0 @@
Submitted By: Randy McMurchy <randy_at_linuxfromscratch_dot_org>
Date: 2006-05-27
Initial Package Version: 2.2.11
Upstream Status: In upstream CVS
Origin: Upstream CVS
Description: Fixes an issue with Gimp using a deprecated libpng
function no longer available in >= libpng-1.2.9
$Id: gimp-2.2.11-libpng_fix-1.patch 1546 2006-05-27 23:44:49Z randy $
--- gimp-2.2.11-orig/plug-ins/common/png.c 2004-11-23 14:28:43.000000000 +0000
+++ gimp-2.2.11/plug-ins/common/png.c 2006-05-27 23:08:02.000000000 +0000
@@ -1012,7 +1012,7 @@
* Done with the file...
*/
- png_read_destroy (pp, info, NULL);
+ png_destroy_read_struct (&pp, &info, NULL);
g_free (pixel);
g_free (pixels);
@@ -1441,7 +1441,7 @@
};
png_write_end (pp, info);
- png_write_destroy (pp);
+ png_destroy_write_struct (&pp, &info);
g_free (pixel);
g_free (pixels);

+ 0
- 28
package/gnome2/gimp/gimpui-pc-missing-gimpmodule.patch

@ -1,28 +0,0 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/gnome2/gimp/gimpui-pc-missing-gimpmodule.patch
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
--- ./gimpui.pc.in.orig 2004-12-08 21:54:58.961259360 +0100
+++ ./gimpui.pc.in 2004-12-08 21:55:48.952659512 +0100
@@ -7,5 +7,5 @@
Description: GIMP User Interface Library
Version: @GIMP_REAL_VERSION@
Requires: gimp-@GIMP_PKGCONFIG_VERSION@ gtk+-2.0 >= 2.2.0
-Libs: -L${libdir} -lgimpui-@GIMP_API_VERSION@ -lgimpwidgets-@GIMP_API_VERSION@
+Libs: -L${libdir} -lgimpui-@GIMP_API_VERSION@ -lgimpwidgets-@GIMP_API_VERSION@ -lgimpmodule-@GIMP_API_VERSION@
Cflags: -I${includedir}/gimp-@GIMP_API_VERSION@

Loading…
Cancel
Save