| CODENOTIFIER | HelpYou are not signed inSign in |
Project: RJB
Revision: 79
Author: arton
Date: 25 Aug 2008 08:54:32
Changes:fix loading jvm from alt directory
Files:| ... | ...@@ -15,7 +15,7 @@ | |
| 15 | 15 | * $Id$ |
| 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" |
| ... | ...@@ -239,7 +239,7 @@ | |
| 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 | } |
| ... | ...@@ -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 |