glib2 0.90.3 → 0.90.4
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +8 -0
- data/ext/glib2/rbglib.c +1 -1
- data/ext/glib2/rbglib.h +1 -1
- metadata +4 -4
data/ChangeLog
CHANGED
@@ -1,5 +1,13 @@
|
|
1
|
+
2010-10-24 Kouhei Sutou <kou@clear-code.com>
|
2
|
+
|
3
|
+
* ext/glib2/rbglib.c (rbg_rval2cstr): add missing '*'.
|
4
|
+
[#3093789]
|
5
|
+
Reported by tmtms. Thanks!!!
|
6
|
+
|
1
7
|
2010-10-23 Kouhei Sutou <kou@cozmixng.org>
|
2
8
|
|
9
|
+
* ext/glib2/rbglib.h: 0.90.3 -> 0.90.4.
|
10
|
+
|
3
11
|
* ext/glib2/glib2.def: add missing exported symbols.
|
4
12
|
|
5
13
|
* lib/mkmf-gnome2.rb: ignore nonexistent directory.
|
data/ext/glib2/rbglib.c
CHANGED
@@ -49,7 +49,7 @@ rbg_rval2cstr(VALUE *str)
|
|
49
49
|
StringValue(*str);
|
50
50
|
#ifdef HAVE_RUBY_ENCODING_H
|
51
51
|
if (rb_enc_get(*str) != rb_utf8_encoding()) {
|
52
|
-
str = rb_str_export_to_enc(*str, rb_utf8_encoding());
|
52
|
+
*str = rb_str_export_to_enc(*str, rb_utf8_encoding());
|
53
53
|
}
|
54
54
|
#endif
|
55
55
|
return RSTRING_PTR(*str);
|
data/ext/glib2/rbglib.h
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glib2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 383
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 90
|
9
|
-
-
|
10
|
-
version: 0.90.
|
9
|
+
- 4
|
10
|
+
version: 0.90.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- The Ruby-GNOME2 Proejct Team
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-10-
|
18
|
+
date: 2010-10-24 00:00:00 +09:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|