summaryrefslogtreecommitdiff
path: root/net-libs/NativeThread/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-10-13 22:19:36 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-10-14 23:22:23 +0100
commit4b19be30aa626b327c885dae62c559ec0e9fb935 (patch)
tree76e74807bc479502e13866b581b6bf86734ec634 /net-libs/NativeThread/files
parent30d6f67c98d149508509d5e86f176d558793acc0 (diff)
gentoo resync : 13.10.2019
Diffstat (limited to 'net-libs/NativeThread/files')
-rw-r--r--net-libs/NativeThread/files/Makefile.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/net-libs/NativeThread/files/Makefile.patch b/net-libs/NativeThread/files/Makefile.patch
deleted file mode 100644
index e1f0209a6f3f..000000000000
--- a/net-libs/NativeThread/files/Makefile.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- Makefile 2008-03-03 13:59:06.000000000 +0100
-+++ Makefile.new 2008-03-30 16:27:12.000000000 +0200
-@@ -1,14 +1,14 @@
--CC = gcc
- INC = $(JAVA_HOME)/include
--CFLAGS = -Wall -O3 -fPIC
--LDFLAGS = -shared -Wl,-soname,libnative.so -I$(INC) -I$(INC)/linux
-+CFLAGS += -Wall
-+LDFLAGS += -shared -Wl,-soname,libnative.so -I$(INC) -I$(INC)/linux
- LIBS = -lc
-
- all: clean libNativeThread.so
-
- NativeThread.class:
-- javac java/NativeThread.java
-- mv java/NativeThread.class freenet/support/io/
-+ javac -classpath /usr/share/freenet/lib/freenet.jar NativeThread.java
-+ mkdir -p freenet/support/io
-+ mv NativeThread.class freenet/support/io/
-
- libNativeThread.so: NativeThread.c NativeThread.h
- $(CC) $(CFLAGS) -o libNativeThread.so $(LDFLAGS) NativeThread.c $(LIBS)