rjb 1.1.4-x86-mswin32-60 → 1.1.5-x86-mswin32-60

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.
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ Mon Aug 25 arton
2
+ *ext/load.c
3
+ Fix checking the result for loading alternate_jvm_type.
4
+ (patch from Kumar, thanks)
1
5
  Thu Aug 14 arton
2
6
  *ext/rjb.c, load.c, etc
3
7
  change comment line // -> /* */ because AIX's compiler
data/ext/jniwrap.h CHANGED
@@ -12,7 +12,7 @@
12
12
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  * Lesser General Public License for more details.
14
14
  *
15
- * $Id: jniwrap.h 78 2008-08-14 10:47:31Z arton $
15
+ * $Id: jniwrap.h 80 2008-08-25 12:56:50Z arton $
16
16
  */
17
17
  #ifndef _Included_jniwrap
18
18
  #define _Included_jniwrap
data/ext/load.c CHANGED
@@ -12,7 +12,7 @@
12
12
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  * Lesser General Public License for more details.
14
14
  *
15
- * $Id: load.c 77 2008-08-14 10:22:35Z arton $
15
+ * $Id: load.c 80 2008-08-25 12:56:50Z arton $
16
16
  */
17
17
 
18
18
  #include <stdlib.h>
@@ -239,7 +239,7 @@ int rjb_create_jvm(JNIEnv** pjenv, JavaVMInitArgs* vm_args, char* userpath, VALU
239
239
 
240
240
  if (!RTEST(jvmdll))
241
241
  {
242
- if (!load_jvm(JVM_TYPE) && !load_jvm(ALT_JVM_TYPE))
242
+ if (!(load_jvm(JVM_TYPE) || load_jvm(ALT_JVM_TYPE)))
243
243
  {
244
244
  return -1;
245
245
  }
data/ext/rjb.c CHANGED
@@ -12,10 +12,10 @@
12
12
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  * Lesser General Public License for more details.
14
14
  *
15
- * $Id: rjb.c 77 2008-08-14 10:22:35Z arton $
15
+ * $Id: rjb.c 80 2008-08-25 12:56:50Z arton $
16
16
  */
17
17
 
18
- #define RJB_VERSION "1.1.4"
18
+ #define RJB_VERSION "1.1.5"
19
19
 
20
20
  #include "ruby.h"
21
21
  #include "extconf.h"
data/lib/rjbcore.so CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: x86-mswin32-60
6
6
  authors:
7
7
  - arton
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-14 00:00:00 +09:00
12
+ date: 2008-08-25 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15