patches/gegl-01-build.diff
author yippi
Mon, 27 Sep 2010 21:07:51 +0000
changeset 20108 51df67ca9307
parent 18100 dd07d1496efc
permissions -rw-r--r--
I had these modules listed as being owned by me, but they are really owned by wangke, correcting.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18100
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     1
--- gegl-0.1.2/gegl/gegl-utils.c-orig	2010-06-02 17:05:47.637226151 -0500
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     2
+++ gegl-0.1.2/gegl/gegl-utils.c	2010-06-02 17:06:06.896650162 -0500
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     3
@@ -26,7 +26,7 @@
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     4
 #include "gegl-types-internal.h"
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     5
 
14687
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
     6
 
18100
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     7
-  inline gint
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     8
+  gint
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
     9
   _gegl_float_epsilon_zero (float value)
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    10
   {
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    11
     return value > -GEGL_FLOAT_EPSILON && value < GEGL_FLOAT_EPSILON;
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    12
--- gegl-0.1.2/gegl/gegl-utils.h-orig	2010-06-02 17:05:43.590555567 -0500
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    13
+++ gegl-0.1.2/gegl/gegl-utils.h	2010-06-02 17:05:55.225459670 -0500
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    14
@@ -198,7 +198,7 @@ void     gegl_free                    (g
14687
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
    15
 
18100
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    16
 /***
dd07d1496efc 2010-06-08 Brian Cameron <[email protected]>
yippi
parents: 18084
diff changeset
    17
  */
14687
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
    18
-inline gint _gegl_float_epsilon_zero  (float     value);
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
    19
+gint _gegl_float_epsilon_zero  (float     value);
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
    20
 gint        _gegl_float_epsilon_equal (float     v1,
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
    21
                                        float     v2);
fcb253179759 2008-12-02 Chris Wang <[email protected]>
bewitche
parents:
diff changeset
    22