fxruby 1.6.30-x64-mingw32 → 1.6.31-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0bf4b64f57d2446d2c482c5ede727e3f5309d1c
4
- data.tar.gz: 9cd6ad3dc5da44c86521d8e4c6411f3b4aff4309
3
+ metadata.gz: 8f398a60bd32b4b1f252a9be1d570e316b57a257
4
+ data.tar.gz: fdb00c4041425e4ceb66c02a198d2639c44aec4f
5
5
  SHA512:
6
- metadata.gz: 863622f0b1f4ecfda39f3b20e2de8ff82aa00c0aedffa7d63f2561ea1d9ba6e3e5f82c1208207c85a280a0095a03f2f2aa5d23c9718f00e0243ead9794013e72
7
- data.tar.gz: c90aa625b0ecf622a93bc89b953510ec362bab6a5c65815c50e05ed1b530e1f3b4b5155524621ed24b52422e1f1b7a3c9399af871060db7140af4940624e830d
6
+ metadata.gz: 693fcb2ad373593c68b4e3c684b491afcccb1261d96d37068f105ae99f1c6e7d6ff5c023070c9ca0f3b98b8a757e4936fa84d75a35b59863ded1cb0d59c68c4b
7
+ data.tar.gz: 4570b83e83b3621dc7d1af57ce4735a93f22832baa2c62fae5532ac0fe9179051db662e9deb930e8be271f7a1bd283ca93bf2d4efced33db14cfb40c80636639
@@ -1,3 +1,8 @@
1
+ === 1.6.31 / 2015-07-21
2
+
3
+ * Replace pipe2() by pipe() and fcntl(), because pipe2() is not as portable.
4
+ * Add missing include statement. Fixes #20
5
+
1
6
  === 1.6.30 / 2015-07-07
2
7
 
3
8
  * Fix crashes in rb_gc_mark(): 0x00000003f54af8 is T_ZOMBIE / T_NONE
@@ -37,6 +37,7 @@ extern "C" {
37
37
  #endif
38
38
 
39
39
  #ifndef WIN32
40
+ #include <unistd.h>
40
41
  #include <fcntl.h>
41
42
  #endif
42
43
 
@@ -84,7 +85,8 @@ void FXRbApp::setThreadsEnabled(FXbool enabled){
84
85
  interrupt_event = CreateEvent(NULL, TRUE, FALSE, NULL);
85
86
  addInput(interrupt_event,INPUT_READ,this,ID_CHORE_THREADS);
86
87
  #else
87
- pipe2(interrupt_fds, O_NONBLOCK);
88
+ pipe(interrupt_fds);
89
+ fcntl(interrupt_fds[0], F_SETFL, O_NONBLOCK);
88
90
  addInput(interrupt_fds[0],INPUT_READ,this,ID_CHORE_THREADS);
89
91
  #endif
90
92
  #else
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module Fox
2
2
  def Fox.fxrubyversion
3
- "1.6.30"
3
+ "1.6.31"
4
4
  end
5
5
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fxruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.30
4
+ version: 1.6.31
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Lyle Johnson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-07-07 00:00:00.000000000 Z
12
+ date: 2015-07-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mini_portile