search for: javacflags

Displaying 2 results from an estimated 2 matches for "javacflags".

Did you mean: javac_flags
2016 Sep 14
1
problem with bindings configure script
...oint to the configure script, rather than the xapian_config executable created when making xapian_core, as pointed out by James. Also, as a general note, when trying to make the bindings, I had a problem when make was trying to compile the java source in org/xapian The following line: $(JAVAC) $(JAVACFLAGS) -classpath $(srcdir)$(JAVA_PATHSEP). -d . $< generated the following error javac: no source files Some experimentation on my part led me to change the Makefile to read $(JAVAC) $(JAVACFLAGS) -classpath $(srcdir) -d . $< and I was able to successfully make the bindings. Haven't had a...
2016 Sep 12
2
problem with bindings configure script
James, That worked, thanks, but with a caveat. I don't know if this is a limitation of autoconf/configure, but jni.h wants to include jni_md.h, which is located in JNI_INCLUDE_DIR/win32, which is not automatically searched. I was able to work around this by moving jni_md.h from the win32 sub directory to the same directory as jni.h. No idea who's bug this is, if it is legitimately a bug,