gimp r27467 - in trunk: . app/gegl app/pdb app/tools
- From: neo svn gnome org
 
- To: svn-commits-list gnome org
 
- Subject: gimp r27467 - in trunk: . app/gegl app/pdb app/tools
 
- Date: Wed, 29 Oct 2008 22:24:09 +0000 (UTC)
 
Author: neo
Date: Wed Oct 29 22:24:08 2008
New Revision: 27467
URL: http://svn.gnome.org/viewvc/gimp?rev=27467&view=rev
Log:
2008-10-29  Sven Neumann  <sven gimp org>
	Bug 558451 â Cannot build GIMP using Sun CC on Solaris 2.8
	* app/pdb/gimp-pdb-compat.c
	* app/gegl/gimpoperationtilesink.c
	* app/gegl/gimpoperationtilesource.c
	* app/tools/gimpgegltool.c: applied patches from Eric Lamarque
	fixing the build using Sun CC on Solaris.
Modified:
   trunk/ChangeLog
   trunk/app/gegl/gimpoperationtilesink.c
   trunk/app/gegl/gimpoperationtilesource.c
   trunk/app/pdb/gimp-pdb-compat.c
   trunk/app/tools/gimpgegltool.c
Modified: trunk/app/gegl/gimpoperationtilesink.c
==============================================================================
--- trunk/app/gegl/gimpoperationtilesink.c	(original)
+++ trunk/app/gegl/gimpoperationtilesink.c	Wed Oct 29 22:24:08 2008
@@ -213,7 +213,7 @@
        pr;
        pr = pixel_regions_process (pr))
     {
-      const GeglRectangle rect = { destPR.x, destPR.y, destPR.w, destPR.h };
+      GeglRectangle rect = { destPR.x, destPR.y, destPR.w, destPR.h };
 
       gegl_buffer_get (input,
                        1.0, &rect, format, destPR.data, destPR.rowstride);
Modified: trunk/app/gegl/gimpoperationtilesource.c
==============================================================================
--- trunk/app/gegl/gimpoperationtilesource.c	(original)
+++ trunk/app/gegl/gimpoperationtilesource.c	Wed Oct 29 22:24:08 2008
@@ -235,7 +235,7 @@
        pr;
        pr = pixel_regions_process (pr))
     {
-      const GeglRectangle rect = { srcPR.x, srcPR.y, srcPR.w, srcPR.h };
+      GeglRectangle rect = { srcPR.x, srcPR.y, srcPR.w, srcPR.h };
 
       gegl_buffer_set (output, &rect, format, srcPR.data, srcPR.rowstride);
     }
Modified: trunk/app/pdb/gimp-pdb-compat.c
==============================================================================
--- trunk/app/pdb/gimp-pdb-compat.c	(original)
+++ trunk/app/pdb/gimp-pdb-compat.c	Wed Oct 29 22:24:08 2008
@@ -272,7 +272,7 @@
 
   if (! pdb_type_quark)
     {
-      const struct
+      struct
       {
         GType          g_type;
         GimpPDBArgType pdb_type;
Modified: trunk/app/tools/gimpgegltool.c
==============================================================================
--- trunk/app/tools/gimpgegltool.c	(original)
+++ trunk/app/tools/gimpgegltool.c	Wed Oct 29 22:24:08 2008
@@ -710,7 +710,7 @@
 
   if (! config_type)
     {
-      const GTypeInfo info =
+      GTypeInfo info =
       {
         sizeof (GimpObjectClass),
         (GBaseInitFunc) NULL,
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]