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 CHANGED
@@ -1,4 +1,5 @@
1
- install-so:
1
+ install-so: install-headers
2
+ install-headers:
2
3
  $(INSTALL_DATA) $(srcdir)/rbglib.h $(RUBYARCHDIR)
3
4
  $(INSTALL_DATA) $(srcdir)/rbglibdeprecated.h $(RUBYARCHDIR)
4
5
  $(INSTALL_DATA) $(srcdir)/rbglib2conversions.h $(RUBYARCHDIR)
data/ext/glib2/rbglib.h CHANGED
@@ -35,7 +35,7 @@ extern "C" {
35
35
 
36
36
  #define RBGLIB_MAJOR_VERSION 1
37
37
  #define RBGLIB_MINOR_VERSION 1
38
- #define RBGLIB_MICRO_VERSION 5
38
+ #define RBGLIB_MICRO_VERSION 6
39
39
 
40
40
  #ifndef RSTRING_PTR
41
41
  # define RSTRING_PTR(s) (RSTRING(s)->ptr)
@@ -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(rb_output_fs) && i>0) {
729
- rg_write(out, rb_output_fs);
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(rb_output_rs)) {
741
- rg_write(out, rb_output_rs);
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
- target_source_dir,
118
- target_build_dir)
117
+ target_source_dir,
118
+ target_build_dir)
119
119
  end
120
120
 
121
121
  [top_srcdir,
@@ -1,5 +1,5 @@
1
1
  # libgiognutls.la - a libtool library file
2
- # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.1
2
+ # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.2
3
3
  #
4
4
  # Please DO NOT delete this file!
5
5
  # It is necessary for linking the library.
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: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 5
10
- version: 1.1.5
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-08-28 00:00:00 Z
18
+ date: 2012-12-02 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: pkg-config