ffi 1.1.4 → 1.1.5
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/libffi.darwin.mk +2 -2
- data/gen/log +1 -0
- metadata +6 -10
data/Rakefile
CHANGED
data/ext/ffi_c/libffi.darwin.mk
CHANGED
@@ -25,7 +25,7 @@ ifeq ($(strip $(ARCHES)),)
|
|
25
25
|
LIBFFI_BUILD_DIR = $(BUILD_DIR)/libffi-$(arch)
|
26
26
|
# Just build the one (default) architecture
|
27
27
|
$(LIBFFI):
|
28
|
-
@mkdir -p "$(LIBFFI_BUILD_DIR)"
|
28
|
+
@mkdir -p "$(LIBFFI_BUILD_DIR)" "$(@D)"
|
29
29
|
@if [ ! -f "$(LIBFFI_BUILD_DIR)"/Makefile ]; then \
|
30
30
|
echo "Configuring libffi"; \
|
31
31
|
cd "$(LIBFFI_BUILD_DIR)" && \
|
@@ -66,7 +66,7 @@ endif
|
|
66
66
|
|
67
67
|
$(LIBFFI): $(LIBTARGETS)
|
68
68
|
# Assemble into a FAT (x86_64, i386, ppc) library
|
69
|
-
@mkdir -p "$(
|
69
|
+
@mkdir -p "$(@D)"
|
70
70
|
/usr/bin/libtool -static -o $@ \
|
71
71
|
$(foreach arch, $(ARCHES),"$(BUILD_DIR)"/libffi-$(arch)/.libs/libffi_convenience.a)
|
72
72
|
@mkdir -p "$(LIBFFI_BUILD_DIR)"/include
|
data/gen/log
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
/Users/wayne/src/ruby-ffi/lib/ffi/platform/x86_64-darwin/types.conf
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
4
|
+
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 1
|
8
7
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
8
|
+
- 5
|
9
|
+
version: 1.1.5
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Wayne Meissner
|
@@ -15,7 +14,7 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2012-08-
|
17
|
+
date: 2012-08-09 00:00:00 +10:00
|
19
18
|
default_executable:
|
20
19
|
dependencies: []
|
21
20
|
|
@@ -393,6 +392,7 @@ files:
|
|
393
392
|
- ext/ffi_c/rbffi_endian.h
|
394
393
|
- ext/ffi_c/win32/stdint.h
|
395
394
|
- gen/Rakefile
|
395
|
+
- gen/log
|
396
396
|
- lib/Lib.iml
|
397
397
|
- lib/ffi.rb
|
398
398
|
- lib/ffi/autopointer.rb
|
@@ -502,27 +502,23 @@ require_paths:
|
|
502
502
|
- lib
|
503
503
|
- ext
|
504
504
|
required_ruby_version: !ruby/object:Gem::Requirement
|
505
|
-
none: false
|
506
505
|
requirements:
|
507
506
|
- - ">="
|
508
507
|
- !ruby/object:Gem::Version
|
509
|
-
hash: 3
|
510
508
|
segments:
|
511
509
|
- 0
|
512
510
|
version: "0"
|
513
511
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
514
|
-
none: false
|
515
512
|
requirements:
|
516
513
|
- - ">="
|
517
514
|
- !ruby/object:Gem::Version
|
518
|
-
hash: 3
|
519
515
|
segments:
|
520
516
|
- 0
|
521
517
|
version: "0"
|
522
518
|
requirements: []
|
523
519
|
|
524
520
|
rubyforge_project: ffi
|
525
|
-
rubygems_version: 1.6
|
521
|
+
rubygems_version: 1.3.6
|
526
522
|
signing_key:
|
527
523
|
specification_version: 3
|
528
524
|
summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries, binding functions within them, and calling those functions from Ruby code
|