gimp r27468 - in branches/gimp-2-6: . app/gegl app/pdb app/tools



Author: neo
Date: Wed Oct 29 22:25:13 2008
New Revision: 27468
URL: http://svn.gnome.org/viewvc/gimp?rev=27468&view=rev

Log:
2008-10-29  Sven Neumann  <sven gimp org>

	Merged from trunk:

	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:
   branches/gimp-2-6/ChangeLog
   branches/gimp-2-6/app/gegl/gimpoperationtilesink.c
   branches/gimp-2-6/app/gegl/gimpoperationtilesource.c
   branches/gimp-2-6/app/pdb/gimp-pdb-compat.c
   branches/gimp-2-6/app/tools/gimpgegltool.c

Modified: branches/gimp-2-6/app/gegl/gimpoperationtilesink.c
==============================================================================
--- branches/gimp-2-6/app/gegl/gimpoperationtilesink.c	(original)
+++ branches/gimp-2-6/app/gegl/gimpoperationtilesink.c	Wed Oct 29 22:25:13 2008
@@ -218,7 +218,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: branches/gimp-2-6/app/gegl/gimpoperationtilesource.c
==============================================================================
--- branches/gimp-2-6/app/gegl/gimpoperationtilesource.c	(original)
+++ branches/gimp-2-6/app/gegl/gimpoperationtilesource.c	Wed Oct 29 22:25:13 2008
@@ -238,7 +238,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: branches/gimp-2-6/app/pdb/gimp-pdb-compat.c
==============================================================================
--- branches/gimp-2-6/app/pdb/gimp-pdb-compat.c	(original)
+++ branches/gimp-2-6/app/pdb/gimp-pdb-compat.c	Wed Oct 29 22:25:13 2008
@@ -272,7 +272,7 @@
 
   if (! pdb_type_quark)
     {
-      const struct
+      struct
       {
         GType          g_type;
         GimpPDBArgType pdb_type;

Modified: branches/gimp-2-6/app/tools/gimpgegltool.c
==============================================================================
--- branches/gimp-2-6/app/tools/gimpgegltool.c	(original)
+++ branches/gimp-2-6/app/tools/gimpgegltool.c	Wed Oct 29 22:25:13 2008
@@ -720,7 +720,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]