mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-10 16:20:42 +00:00
Add librt for sched_yield on solaris.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28781 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d0bd5c8983
commit
d46a7f8bb1
3 changed files with 7949 additions and 7784 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-10-07 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.ac: Add librt for sched_yield on solaris.
|
||||
|
||||
2009-10-05 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.ac: enable ffcall if ffi is disabled
|
||||
|
|
|
@ -872,6 +872,9 @@ if test $pthread_ok = no ; then
|
|||
AC_MSG_ERROR([Unable to find pthread library (needed for thread support).])
|
||||
fi
|
||||
|
||||
# Typically need librt on Solaris for sched_yield
|
||||
AC_CHECK_LIB(rt, sched_yield)
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# This function needed by StdioStream.m
|
||||
#--------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue