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

Skip to content
Snippets Groups Projects
Commit f5f4f14b authored by zzz's avatar zzz
Browse files

Drop libjbigi-linux-k63.so and libjbigi-freebsd-k63.so that were identical

to k62 versions; add mapping in NativeBigInteger.
parent 6616ccd3
No related branches found
No related tags found
No related merge requests found
...@@ -544,7 +544,13 @@ public class NativeBigInteger extends BigInteger { ...@@ -544,7 +544,13 @@ public class NativeBigInteger extends BigInteger {
if (optimized) { if (optimized) {
if (sCPUType == null) if (sCPUType == null)
return null; return null;
sAppend = "-" + sCPUType; // Add exceptions here if library files are identical,
// instead of adding duplicates to jbigi.jar
if (sCPUType.equals(JBIGI_OPTIMIZATION_K6_3) && !_isWin)
// k62 and k63 identical except on windows
sAppend = "-" + JBIGI_OPTIMIZATION_K6_2;
else
sAppend = "-" + sCPUType;
} else { } else {
sAppend = "-none"; sAppend = "-none";
} }
......
File deleted
File deleted
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