summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2015-11-01 15:16:56 +0000
committerPatrice Clement <monsieurp@gentoo.org>2015-11-01 19:09:28 +0000
commit9c73bdbf43377cbba6e16a0af4636cce108210c6 (patch)
tree8b0225fd482ed29cdea598a0f4ebdf8936f42e2d /dev-java/fec/files
parentdev-java/fec: Stable for amd64. Stable for x86 using the ALLARCHES policy. (diff)
downloadgentoo-9c73bdbf43377cbba6e16a0af4636cce108210c6.tar.gz
gentoo-9c73bdbf43377cbba6e16a0af4636cce108210c6.tar.bz2
gentoo-9c73bdbf43377cbba6e16a0af4636cce108210c6.zip
dev-java/fec: Clean up old.
Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/fec/files')
-rw-r--r--dev-java/fec/files/libfec8path.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-java/fec/files/libfec8path.patch b/dev-java/fec/files/libfec8path.patch
deleted file mode 100644
index 928e3fec62d3..000000000000
--- a/dev-java/fec/files/libfec8path.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- 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) {