fxruby 1.6.30-x86-mingw32 → 1.6.31-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b129d331f76f93c0bcd8786cc5fe2280c9bef4fd
4
- data.tar.gz: 76a3779dbda5356c0cac11480e3d0aaf1fd949e4
3
+ metadata.gz: c0d4f6148a6a5eadb994a5a697f8ae6b36f48e1c
4
+ data.tar.gz: 5b0901247dd69afa8c1ad1e220f31e92f0c7f1e7
5
5
  SHA512:
6
- metadata.gz: 55fc2759f934dca360fb8c43d2715d8364604f15248969a290164761aca50a2aad143eff3092984e88a50e0293f88bb0034f7e0db587e13a6c19608c60fe9ced
7
- data.tar.gz: 0cd8a6947353a1298ef659a0ba8b455ca56c78473166aa961c609af8e889b3a0fc644828918f175f2233bfac12be453a052377514f3aaa94111a453f71bf694a
6
+ metadata.gz: e5d4e858deb6be37e8ce5d57daf49d966b8928d8fc6c1ac088f9693f9384e0427a08c1f128bca8ac60d7cb42735d2866bae2b76e87478c242433f962170e0dab
7
+ data.tar.gz: b6c4f7cbf870a538dd62c8e019964d1ec84e6a8897ca2348ebba2268919fbf9ec171d1798a4307685241044654286cf29d610dae133b14b16c1576ca1d81b580
@@ -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
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: x86-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