cairo 1.12.0-x86-mingw32 → 1.12.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

data/NEWS CHANGED
@@ -1,3 +1,22 @@
1
+ Release 1.12.1 (2012-03-31) Kouhei Sutou <kou@cozmixng.org>)
2
+ ============================================================
3
+
4
+ Improvements
5
+ ------------
6
+
7
+ * Re-supported cairo < 1.10.0.
8
+ [ruby-gnome2-devel-en] Help me install my own program [Eric C.]
9
+
10
+ Fixes
11
+ -----
12
+
13
+ * Fixed a problem that an unresolved symbol is referenced.
14
+
15
+ Thanks
16
+ ------
17
+
18
+ * Eric C.
19
+
1
20
  Release 1.12.0 (2012-03-25) Kouhei Sutou <kou@cozmixng.org>)
2
21
  ============================================================
3
22
 
data/Rakefile CHANGED
@@ -97,7 +97,7 @@ end
97
97
 
98
98
  # for releasing
99
99
  task :dist do
100
- sh "./dist.sh", spec.version
100
+ sh "./dist.sh", spec.version.to_s
101
101
  end
102
102
 
103
103
  # for documentation
data/ext/cairo/rb_cairo.h CHANGED
@@ -73,7 +73,7 @@ RB_CAIRO_BEGIN_DECLS
73
73
 
74
74
  #define RB_CAIRO_VERSION_MAJOR 1
75
75
  #define RB_CAIRO_VERSION_MINOR 12
76
- #define RB_CAIRO_VERSION_MICRO 0
76
+ #define RB_CAIRO_VERSION_MICRO 1
77
77
 
78
78
  RB_CAIRO_VAR VALUE rb_mCairo;
79
79
  RB_CAIRO_VAR VALUE rb_cCairo_Context;
@@ -192,7 +192,11 @@ rb_cairo_check_status (cairo_status_t status)
192
192
  rb_raise (rb_eCairo_DeviceFinished, "%s", string);
193
193
  break;
194
194
  #endif
195
+ #if CAIRO_CHECK_VERSION(1, 10, 0)
195
196
  case CAIRO_STATUS_LAST_STATUS:
197
+ #else
198
+ default:
199
+ #endif
196
200
  rb_raise (rb_eArgError, "bug: %s: %d", string, status);
197
201
  break;
198
202
  }
@@ -827,7 +827,7 @@ cr_raster_source_finish_callback (cairo_pattern_t *pattern, void *callback_data)
827
827
  if (NIL_P (rb_finish))
828
828
  return;
829
829
 
830
- rb_function (rb_finish, id_call, 1, rb_pattern);
830
+ rb_funcall (rb_finish, id_call, 1, rb_pattern);
831
831
  }
832
832
 
833
833
  static VALUE
data/lib/1.8/cairo.so CHANGED
Binary file
data/lib/1.9/cairo.so CHANGED
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cairo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 39
4
+ hash: 37
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 12
9
- - 0
10
- version: 1.12.0
9
+ - 1
10
+ version: 1.12.1
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - Kouhei Sutou