ffi 1.1.4-x86-mingw32 → 1.1.5-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 CHANGED
@@ -77,7 +77,7 @@ PROJ.name = 'ffi'
77
77
  PROJ.authors = 'Wayne Meissner'
78
78
  PROJ.email = 'wmeissner@gmail.com'
79
79
  PROJ.url = 'http://wiki.github.com/ffi/ffi'
80
- PROJ.version = '1.1.4'
80
+ PROJ.version = '1.1.5'
81
81
  PROJ.rubyforge.name = 'ffi'
82
82
  PROJ.readme_file = 'README.rdoc'
83
83
 
@@ -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 "$(BUILD_DIR)"/libffi/.libs
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
Binary file
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 4
10
- version: 1.1.4
9
+ - 5
10
+ version: 1.1.5
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - Wayne Meissner
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-08-04 00:00:00 +10:00
18
+ date: 2012-09-15 00:00:00 +10:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -365,6 +365,7 @@ files:
365
365
  - ext/ffi_c/Types.h
366
366
  - ext/ffi_c/Variadic.c
367
367
  - ext/ffi_c/win32/stdint.h
368
+ - gen/log
368
369
  - gen/Rakefile
369
370
  - lib/ffi/autopointer.rb
370
371
  - lib/ffi/buffer.rb