changes for optionally building with rxtx instead of just javacomm

This commit is contained in:
benfry
2003-08-03 18:29:49 +00:00
parent 64a1e88c81
commit 9dea826dc9
3 changed files with 21 additions and 4 deletions

View File

@@ -35,7 +35,11 @@ public class PdePreprocessor {
static final String application_imports[] = {
"java.applet", "java.awt", "java.awt.image", "java.awt.event",
"java.io", "java.net", "java.text", "java.util", "java.util.zip",
#ifndef RXTX
"javax.comm",
#else
"gnu.io",
#endif
// if jdk14 defined, jdk13 will be as well
#ifdef JDK13