mirror of git://gcc.gnu.org/git/gcc.git
configure: Rebuilt.
* configure: Rebuilt. * configure.in: Fixed typo; variable is THREADSPEC and not THREADSPECS. From-SVN: r29251
This commit is contained in:
parent
5a6ee81974
commit
f1b856d94e
|
|
@ -1,3 +1,9 @@
|
||||||
|
1999-09-09 Tom Tromey <tromey@cygnus.com>
|
||||||
|
|
||||||
|
* configure: Rebuilt.
|
||||||
|
* configure.in: Fixed typo; variable is THREADSPEC and not
|
||||||
|
THREADSPECS.
|
||||||
|
|
||||||
1999-09-08 Tom Tromey <tromey@cygnus.com>
|
1999-09-08 Tom Tromey <tromey@cygnus.com>
|
||||||
|
|
||||||
* include/posix-threads.h (_Jv_PthreadCheckMonitor): Reverted
|
* include/posix-threads.h (_Jv_PthreadCheckMonitor): Reverted
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -386,11 +386,11 @@ else
|
||||||
AC_CHECK_LIB(rt, sched_yield, [
|
AC_CHECK_LIB(rt, sched_yield, [
|
||||||
AC_DEFINE(HAVE_SCHED_YIELD)
|
AC_DEFINE(HAVE_SCHED_YIELD)
|
||||||
THREADLIBS="$THREADLIBS -lrt"
|
THREADLIBS="$THREADLIBS -lrt"
|
||||||
THREADSPECS="$THREADSPECS -lrt"], [
|
THREADSPEC="$THREADSPEC -lrt"], [
|
||||||
AC_CHECK_LIB(posix4, sched_yield, [
|
AC_CHECK_LIB(posix4, sched_yield, [
|
||||||
AC_DEFINE(HAVE_SCHED_YIELD)
|
AC_DEFINE(HAVE_SCHED_YIELD)
|
||||||
THREADLIBS="$THREADLIBS -lposix4"
|
THREADLIBS="$THREADLIBS -lposix4"
|
||||||
THREADSPECS="$THREADSPECS -lposix4"])])])
|
THREADSPEC="$THREADSPEC -lposix4"])])])
|
||||||
LIBS="$save_LIBS"
|
LIBS="$save_LIBS"
|
||||||
|
|
||||||
# We can save a little space at runtime if the mutex has m_count
|
# We can save a little space at runtime if the mutex has m_count
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue