mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
precise, it is a JNI-wrapper to Readline. It is distributed under the LGPL. You must call Readline.load(ReadlineLibrary lib); before using any other methods. If you omit the call to the load()-method, the pure Java fallback solution is used. Possible values for lib are: ReadlineLibrary.PureJava ReadlineLibrary.GnuReadline ReadlineLibrary.Editline ReadlineLibrary.Getline Note that all programs using GnuReadline will fall under the GPL, since Gnu-Readline is GPL software! WWW: http://sourceforge.net/projects/java-readline/ PR: ports/116817 Submitted by: Martin Kammerhofer <mkamm at gmx.net>
11 lines
403 B
Text
11 lines
403 B
Text
--- src/Makefile 2003-01-07 11:14:35.000000000 +0100
|
|
+++ /tmp/libreadline-java-0.8.0/src/Makefile 2007-09-21 07:45:38.000000000 +0200
|
|
@@ -10,7 +10,7 @@
|
|
|
|
native: always
|
|
cd native ; $(MAKE) T_LIBS="$(T_LIBS)" JAVAINCLUDE="$(JAVAINCLUDE)" \
|
|
- JAVANATINC="$(JAVANATINC)" all
|
|
+ JAVANATINC="$(JAVANATINC)" JAVAH="$(JAVAH)" all
|
|
|
|
$(BUILD):
|
|
mkdir $@
|