mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
80f0d9edc0
Use right shared library names on ELF. Disable Java support on ELF systems, because we don't have an ELF jdk. Disable Java support on aout systems, because ILU runtime dumps core. New PARC patches, now as one distfile instead of patches/ collection. ILU now works with optimization enabled -> make a package. Thread support now works, on -current and -stable. Thanks folks!
24 lines
674 B
Plaintext
24 lines
674 B
Plaintext
*** runtime/kernel/threads.c.orig Thu Oct 8 15:34:30 1998
|
|
--- runtime/kernel/threads.c Thu Oct 8 15:33:58 1998
|
|
***************
|
|
*** 1151,1158 ****
|
|
err == ETIME
|
|
#endif
|
|
#if (defined(ILU_POSIX_THREADS) || defined(ILU_DCE_THREADS))
|
|
! err == ETIME /* on Solaris 2 */
|
|
! || err == ETIMEDOUT /* on Linux, AIX */
|
|
#endif
|
|
#ifdef ILU_WIN32_THREADS
|
|
err == WAIT_TIMEOUT
|
|
--- 1151,1160 ----
|
|
err == ETIME
|
|
#endif
|
|
#if (defined(ILU_POSIX_THREADS) || defined(ILU_DCE_THREADS))
|
|
! #ifndef __FreeBSD__
|
|
! err == ETIME || /* on Solaris 2 */
|
|
! #endif
|
|
! err == ETIMEDOUT /* on Linux, AIX, FreeBSD */
|
|
#endif
|
|
#ifdef ILU_WIN32_THREADS
|
|
err == WAIT_TIMEOUT
|