diff options
author | Herve Quiroz <hq@FreeBSD.org> | 2004-10-20 11:17:36 +0000 |
---|---|---|
committer | Herve Quiroz <hq@FreeBSD.org> | 2004-10-20 11:17:36 +0000 |
commit | 8520c470d71e21de2b51bb80a6f4abc4d355513f (patch) | |
tree | 194a1db6eb07b944c6c68bda529edb5139323e15 /comms/rxtx/files | |
parent | - Update to 0.72 (diff) |
RXTX: serial and parallel I/O libraries supporting Sun's CommAPI. Open-source
implementation of the Java Communications API. Native interface to serial ports
in Java.
PR: 65396
Submitted by: Jean-Baptiste Quenot <jb.quenot@caraldi.com>
Reviewed by: glewis
Approved by: glewis (mentor)
Notes
Notes:
svn path=/head/; revision=119844
Diffstat (limited to 'comms/rxtx/files')
-rw-r--r-- | comms/rxtx/files/patch-Makefile.in | 13 | ||||
-rw-r--r-- | comms/rxtx/files/patch-ParallelImp.c | 14 | ||||
-rw-r--r-- | comms/rxtx/files/patch-SerialImp.h | 13 |
3 files changed, 40 insertions, 0 deletions
diff --git a/comms/rxtx/files/patch-Makefile.in b/comms/rxtx/files/patch-Makefile.in new file mode 100644 index 000000000000..c8a3996f115c --- /dev/null +++ b/comms/rxtx/files/patch-Makefile.in @@ -0,0 +1,13 @@ +$FreeBSD$ + +--- Makefile.in.orig Fri Apr 9 23:57:20 2004 ++++ Makefile.in Fri Apr 9 23:58:06 2004 +@@ -451,7 +451,7 @@ + echo $$i; \ + fi; \ + done` $(RXTX_PATH) +- $(INSTALL_PROGRAM) $(JARTARGET) $(JHOME)/ ++ $(BSD_INSTALL_DATA) $(JARTARGET) $(JHOME)/ + + clean-generic: + rm -rf $(DEST) $(TOP)/$(CLASSTOP) diff --git a/comms/rxtx/files/patch-ParallelImp.c b/comms/rxtx/files/patch-ParallelImp.c new file mode 100644 index 000000000000..24b304efdb6f --- /dev/null +++ b/comms/rxtx/files/patch-ParallelImp.c @@ -0,0 +1,14 @@ +$FreeBSD$ + +--- src/ParallelImp.c.orig Fri Apr 9 23:31:09 2004 ++++ src/ParallelImp.c Fri Apr 9 23:35:01 2004 +@@ -222,9 +222,6 @@ + #if defined(__linux__) + return( status & LP_BUSY ? JNI_TRUE : JNI_FALSE ); + #endif +-#if defined(__FreeBSD__) +- return( status & EBUSY ? JNI_TRUE : JNI_FALSE ); +-#endif + return(JNI_FALSE); + } + /*---------------------------------------------------------- diff --git a/comms/rxtx/files/patch-SerialImp.h b/comms/rxtx/files/patch-SerialImp.h new file mode 100644 index 000000000000..808d3c10c56b --- /dev/null +++ b/comms/rxtx/files/patch-SerialImp.h @@ -0,0 +1,13 @@ +$FreeBSD$ + +--- src/SerialImp.h.orig Sat Apr 24 23:31:27 2004 ++++ src/SerialImp.h Sat Apr 24 23:31:38 2004 +@@ -126,7 +126,7 @@ + #endif /* __sgi__ || sgi */ + #if defined(__FreeBSD__) + # define DEVICEDIR "/dev/" +-# define LOCKDIR "/var/spool/uucp" ++# define LOCKDIR "/var/spool/lock" + # define LOCKFILEPREFIX "LK." + # define UUCP + #endif |