ssleay32.dll depends on libeay32.dll
This commit is contained in:
parent
57b9747bfe
commit
19565d776d
|
@ -49,18 +49,25 @@ abstract class VMwareObject {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SigarLoader.IS_WIN32) {
|
if (SigarLoader.IS_WIN32) {
|
||||||
File libssl =
|
File root = new File(lib).getParentFile();
|
||||||
new File(new File(lib).getParent(),
|
String[] libs = {
|
||||||
"ssleay32.dll");
|
"libeay32.dll",
|
||||||
if (!libssl.exists()) {
|
"ssleay32.dll"
|
||||||
return false;
|
};
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
for (int i=0; i<libs.length; i++) {
|
||||||
System.load(libssl.getPath());
|
File ssllib =
|
||||||
} catch (UnsatisfiedLinkError e) {
|
new File(root, libs[i]);
|
||||||
//e.printStackTrace();
|
if (!ssllib.exists()) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
System.load(ssllib.getPath());
|
||||||
|
} catch (UnsatisfiedLinkError e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue