mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
- Fixed patches for portlint - Supressed debug message on RXTXPort:removeEventListener:Exit when not in debug mode - Added java bootstrap class - Updated java source/target directives which will be depreciated in future release, see http://openjdk.java.net/ +jeps/182, and regression tested functionality. PR: 216248 Submitted by: james@elstone.net Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9508
12 lines
390 B
C
12 lines
390 B
C
--- src/ParallelImp.c.orig 2008-11-27 20:01:48 UTC
|
|
+++ src/ParallelImp.c
|
|
@@ -265,9 +265,6 @@ JNIEXPORT jboolean JNICALL LPRPort(isPri
|
|
#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);
|
|
}
|
|
/*----------------------------------------------------------
|