I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 746d440c authored by kytv's avatar kytv
Browse files

better NBI logic

parent b25a16f1
No related branches found
No related tags found
No related merge requests found
...@@ -695,7 +695,7 @@ public class NativeBigInteger extends BigInteger { ...@@ -695,7 +695,7 @@ public class NativeBigInteger extends BigInteger {
rv.add(_libPrefix + getMiddleName1() + "none_64" + _libSuffix); rv.add(_libPrefix + getMiddleName1() + "none_64" + _libSuffix);
// Add libjbigi-xxx-none.so // Add libjbigi-xxx-none.so
// Note that libjbigi-osx-none.jnilib is a 'fat binary' with both PPC and x86-32 // Note that libjbigi-osx-none.jnilib is a 'fat binary' with both PPC and x86-32
if ((!_isArm) || (!_isPPC && !_isMac)) if (!_isArm && !_isPPC && !_isMac)
rv.add(getResourceName(false)); rv.add(getResourceName(false));
return rv; return rv;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment