glib2 1.0.1-x86-mingw32 → 1.0.2-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/ChangeLog CHANGED
@@ -1,5 +1,9 @@
1
1
  2011-09-18 Kouhei Sutou <kou@cozmixng.org>
2
2
 
3
+ * lib/mkmf-gnome2.rb (add_depend_package): support RubyGems 1.8.6.
4
+
5
+ * ext/glib2/rbglib.h: 1.0.1 -> 1.0.2.
6
+
3
7
  * ext/glib2/rbgutil_callback.c: don't include unistd.h on Win32
4
8
  environment.
5
9
 
@@ -23,7 +23,7 @@ extern "C" {
23
23
 
24
24
  #define RBGLIB_MAJOR_VERSION 1
25
25
  #define RBGLIB_MINOR_VERSION 0
26
- #define RBGLIB_MICRO_VERSION 1
26
+ #define RBGLIB_MICRO_VERSION 2
27
27
 
28
28
  #ifndef RSTRING_PTR
29
29
  # define RSTRING_PTR(s) (RSTRING(s)->ptr)
Binary file
Binary file
@@ -81,7 +81,7 @@ def add_depend_package(target_name, target_srcdir, top_srcdir, options={})
81
81
  require 'rubygems'
82
82
  gem_spec = (Gem::Specification.respond_to?(:find_by_name) ?
83
83
  Gem::Specification.find_by_name(target_name) :
84
- Gem.source_index.find_name(target_name)).last
84
+ Gem.source_index.find_name(target_name).last)
85
85
  if gem_spec
86
86
  target_source_dir = File.join(gem_spec.full_gem_path, "ext/#{target_name}")
87
87
  target_build_dir = target_source_dir
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: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - The Ruby-GNOME2 Proejct Team