glib2 1.1.5-x86-mingw32 → 1.1.6-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/glib2/depend +2 -1
- data/ext/glib2/rbglib.h +1 -1
- data/ext/glib2/rbglib_iochannel.c +7 -4
- data/lib/1.8/glib2.so +0 -0
- data/lib/1.9/glib2.so +0 -0
- data/lib/mkmf-gnome2.rb +2 -2
- data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.la +1 -1
- metadata +4 -4
data/ext/glib2/depend
CHANGED
data/ext/glib2/rbglib.h
CHANGED
@@ -717,6 +717,7 @@ rg_print(int argc, VALUE *argv, VALUE out)
|
|
717
717
|
{
|
718
718
|
int i;
|
719
719
|
VALUE line;
|
720
|
+
VALUE output_field_separator;
|
720
721
|
|
721
722
|
/* if no argument given, print `$_' */
|
722
723
|
if (argc == 0) {
|
@@ -724,9 +725,11 @@ rg_print(int argc, VALUE *argv, VALUE out)
|
|
724
725
|
line = rb_lastline_get();
|
725
726
|
argv = &line;
|
726
727
|
}
|
728
|
+
|
729
|
+
output_field_separator = rb_gv_get("$,");
|
727
730
|
for (i=0; i<argc; i++) {
|
728
|
-
if (!NIL_P(
|
729
|
-
rg_write(out,
|
731
|
+
if (!NIL_P(output_field_separator) && i>0) {
|
732
|
+
rg_write(out, output_field_separator);
|
730
733
|
}
|
731
734
|
switch (TYPE(argv[i])) {
|
732
735
|
case T_NIL:
|
@@ -737,8 +740,8 @@ rg_print(int argc, VALUE *argv, VALUE out)
|
|
737
740
|
break;
|
738
741
|
}
|
739
742
|
}
|
740
|
-
if (!NIL_P(
|
741
|
-
rg_write(out,
|
743
|
+
if (!NIL_P(output_field_separator)) {
|
744
|
+
rg_write(out, output_field_separator);
|
742
745
|
}
|
743
746
|
|
744
747
|
return Qnil;
|
data/lib/1.8/glib2.so
CHANGED
Binary file
|
data/lib/1.9/glib2.so
CHANGED
Binary file
|
data/lib/mkmf-gnome2.rb
CHANGED
@@ -114,8 +114,8 @@ def add_depend_package(target_name, target_srcdir, top_srcdir, options={})
|
|
114
114
|
target_source_dir = File.join(gem_spec.full_gem_path, "ext/#{target_name}")
|
115
115
|
target_build_dir = target_source_dir
|
116
116
|
add_depend_package_path(target_name,
|
117
|
-
|
118
|
-
|
117
|
+
target_source_dir,
|
118
|
+
target_build_dir)
|
119
119
|
end
|
120
120
|
|
121
121
|
[top_srcdir,
|
Binary file
|
Binary file
|
Binary file
|
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: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 6
|
10
|
+
version: 1.1.6
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- The Ruby-GNOME2 Project Team
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-12-02 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: pkg-config
|