You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/fec/files/libfec8path.patch

28 lines
950 B

--- src/com/onionnetworks/fec/Native8Code.java 2002-09-30 20:19:24.000000000 +0200
+++ src/com/onionnetworks/fec/Native8Code.java.new 2008-03-24 01:38:35.000000000 +0100
@@ -3,6 +3,7 @@
//import java.security.AccessController;
//import sun.security.action.*;
import com.onionnetworks.util.*;
+import java.io.File;
/**
* This class is the frontend for the JNI wrapper for the C implementation of
@@ -21,13 +22,9 @@
private int code;
static {
- String path = NativeDeployer.getLibraryPath
- (Native8Code.class.getClassLoader(),"fec8");
- if (path != null) {
- System.load(path);
- } else {
- System.out.println("Unable to find native library for fec8");
- }
+ File path = new File("/usr/lib/libfec8.so");
+ System.out.println("Loading FEC lib ["+path.getAbsolutePath()+']');
+ System.load(path.getAbsolutePath());
}
public Native8Code(int k, int n) {