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:
Adam Fedor 2009-10-07 15:59:09 +00:00
parent d0bd5c8983
commit d46a7f8bb1
3 changed files with 7949 additions and 7784 deletions

View file

@ -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> 2009-10-05 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: enable ffcall if ffi is disabled * configure.ac: enable ffcall if ffi is disabled

15162
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -872,6 +872,9 @@ if test $pthread_ok = no ; then
AC_MSG_ERROR([Unable to find pthread library (needed for thread support).]) AC_MSG_ERROR([Unable to find pthread library (needed for thread support).])
fi fi
# Typically need librt on Solaris for sched_yield
AC_CHECK_LIB(rt, sched_yield)
#-------------------------------------------------------------------- #--------------------------------------------------------------------
# This function needed by StdioStream.m # This function needed by StdioStream.m
#-------------------------------------------------------------------- #--------------------------------------------------------------------