ffi 1.1.0.rc4-x86-mingw32 → 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/Rakefile +1 -1
- data/ext/ffi_c/extconf.rb +1 -1
- data/lib/1.8/ffi_c.so +0 -0
- data/lib/1.9/ffi_c.so +0 -0
- data/lib/ffi/platform/arm-linux/types.conf +2 -0
- data/lib/ffi/platform/i386-linux/types.conf +3 -0
- data/lib/ffi/platform/ia64-linux/types.conf +2 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +3 -1
- metadata +8 -12
data/Rakefile
CHANGED
@@ -74,7 +74,7 @@ PROJ.name = 'ffi'
|
|
74
74
|
PROJ.authors = 'Wayne Meissner'
|
75
75
|
PROJ.email = 'wmeissner@gmail.com'
|
76
76
|
PROJ.url = 'http://wiki.github.com/ffi/ffi'
|
77
|
-
PROJ.version = '1.1.0
|
77
|
+
PROJ.version = '1.1.0'
|
78
78
|
PROJ.rubyforge.name = 'ffi'
|
79
79
|
PROJ.readme_file = 'README.rdoc'
|
80
80
|
|
data/ext/ffi_c/extconf.rb
CHANGED
@@ -7,7 +7,7 @@ if !defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby"
|
|
7
7
|
|
8
8
|
if ENV['RUBY_CC_VERSION'].nil? && (pkg_config("libffi") ||
|
9
9
|
have_header("ffi.h") ||
|
10
|
-
find_header("ffi.h", "/usr/local/include"))
|
10
|
+
find_header("ffi.h", "/usr/local/include", "/usr/include/ffi"))
|
11
11
|
|
12
12
|
# We need at least ffi_call and ffi_prep_closure
|
13
13
|
libffi_ok = have_library("ffi", "ffi_call", [ "ffi.h" ]) ||
|
data/lib/1.8/ffi_c.so
CHANGED
Binary file
|
data/lib/1.9/ffi_c.so
CHANGED
Binary file
|
@@ -15,6 +15,8 @@ rbx.platform.typedef.__u_quad_t = ulong_long
|
|
15
15
|
rbx.platform.typedef.__dev_t = ulong_long
|
16
16
|
rbx.platform.typedef.__uid_t = uint
|
17
17
|
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__in_addr_t = uint
|
19
|
+
rbx.platform.typedef.__in_port_t = ushort
|
18
20
|
rbx.platform.typedef.__ino_t = ulong
|
19
21
|
rbx.platform.typedef.__ino64_t = ulong_long
|
20
22
|
rbx.platform.typedef.__mode_t = uint
|
@@ -34,6 +34,7 @@ rbx.platform.typedef.__swblk_t = long
|
|
34
34
|
rbx.platform.typedef.__key_t = int
|
35
35
|
rbx.platform.typedef.__clockid_t = int
|
36
36
|
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.blksize_t = long
|
37
38
|
rbx.platform.typedef.__blksize_t = long
|
38
39
|
rbx.platform.typedef.__blkcnt_t = long
|
39
40
|
rbx.platform.typedef.__blkcnt64_t = long_long
|
@@ -57,6 +58,8 @@ rbx.platform.typedef.loff_t = long_long
|
|
57
58
|
rbx.platform.typedef.ino_t = ulong_long
|
58
59
|
rbx.platform.typedef.dev_t = ulong_long
|
59
60
|
rbx.platform.typedef.gid_t = uint
|
61
|
+
rbx.platform.typedef.in_addr_t = uint
|
62
|
+
rbx.platform.typedef.in_port_t = ushort
|
60
63
|
rbx.platform.typedef.mode_t = uint
|
61
64
|
rbx.platform.typedef.nlink_t = uint
|
62
65
|
rbx.platform.typedef.uid_t = uint
|
@@ -15,6 +15,8 @@ rbx.platform.typedef.__u_quad_t = ulong
|
|
15
15
|
rbx.platform.typedef.__dev_t = ulong
|
16
16
|
rbx.platform.typedef.__uid_t = uint
|
17
17
|
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__in_addr_t = uint
|
19
|
+
rbx.platform.typedef.__in_port_t = ushort
|
18
20
|
rbx.platform.typedef.__ino_t = ulong
|
19
21
|
rbx.platform.typedef.__ino64_t = ulong
|
20
22
|
rbx.platform.typedef.__mode_t = uint
|
@@ -34,7 +34,7 @@ rbx.platform.typedef.__swblk_t = long
|
|
34
34
|
rbx.platform.typedef.__key_t = int
|
35
35
|
rbx.platform.typedef.__clockid_t = int
|
36
36
|
rbx.platform.typedef.__timer_t = pointer
|
37
|
-
rbx.platform.typedef.
|
37
|
+
rbx.platform.typedef.blksize_t = long
|
38
38
|
rbx.platform.typedef.__blkcnt_t = long
|
39
39
|
rbx.platform.typedef.__blkcnt64_t = long
|
40
40
|
rbx.platform.typedef.__fsblkcnt_t = ulong
|
@@ -57,6 +57,8 @@ rbx.platform.typedef.loff_t = long
|
|
57
57
|
rbx.platform.typedef.ino_t = ulong
|
58
58
|
rbx.platform.typedef.dev_t = ulong
|
59
59
|
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.in_addr_t = uint
|
61
|
+
rbx.platform.typedef.in_port_t = ushort
|
60
62
|
rbx.platform.typedef.mode_t = uint
|
61
63
|
rbx.platform.typedef.nlink_t = ulong
|
62
64
|
rbx.platform.typedef.uid_t = uint
|
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 19
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
9
|
- 0
|
10
|
-
|
11
|
-
- 4
|
12
|
-
version: 1.1.0.rc4
|
10
|
+
version: 1.1.0
|
13
11
|
platform: x86-mingw32
|
14
12
|
authors:
|
15
13
|
- Wayne Meissner
|
@@ -17,7 +15,7 @@ autorequire:
|
|
17
15
|
bindir: bin
|
18
16
|
cert_chain: []
|
19
17
|
|
20
|
-
date: 2012-
|
18
|
+
date: 2012-07-18 00:00:00 +10:00
|
21
19
|
default_executable:
|
22
20
|
dependencies: []
|
23
21
|
|
@@ -483,14 +481,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
483
481
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
484
482
|
none: false
|
485
483
|
requirements:
|
486
|
-
- - "
|
484
|
+
- - ">="
|
487
485
|
- !ruby/object:Gem::Version
|
488
|
-
hash:
|
486
|
+
hash: 3
|
489
487
|
segments:
|
490
|
-
-
|
491
|
-
|
492
|
-
- 1
|
493
|
-
version: 1.3.1
|
488
|
+
- 0
|
489
|
+
version: "0"
|
494
490
|
requirements: []
|
495
491
|
|
496
492
|
rubyforge_project: ffi
|