glib2 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,5 +1,7 @@
1
1
  2011-09-18 Kouhei Sutou <kou@cozmixng.org>
2
2
 
3
+ * ext/glib2/rbglib.h: 1.0.1 -> 1.0.2.
4
+
3
5
  * ext/glib2/rbgutil_callback.c: don't include unistd.h on Win32
4
6
  environment.
5
7
 
@@ -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)
@@ -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: ruby
12
12
  authors:
13
13
  - The Ruby-GNOME2 Proejct Team