configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.

* configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
* configure: Rebuilt.

From-SVN: r35218
This commit is contained in:
Alexandre Oliva 2000-07-24 04:20:09 +00:00 committed by Alexandre Oliva
parent 14400a5922
commit c030bee9a8
3 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2000-07-24 Alexandre Oliva <aoliva@redhat.com>
* configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
* configure: Rebuilt.
* dyn_load.c (GC_scratch_last_end_ptr): Don't declare a #define.
2000-06-20 Bryce McKinlay <bryce@albatross.co.nz>

4
boehm-gc/configure vendored
View File

@ -2072,6 +2072,10 @@ if test "$THREADS" = yes; then
*-*-win*)
THREADS=win32
;;
*-*-irix[1-5].*)
# No built-in threads library on IRIX 5.* and older.
THREADS=none
;;
*-*-irix*)
# FIXME: for now, choose POSIX, because we implement that.
# Later, choose irix threads.

View File

@ -44,6 +44,10 @@ if test "$THREADS" = yes; then
*-*-win*)
THREADS=win32
;;
*-*-irix[[1-5]].*)
# No built-in threads library on IRIX 5.* and older.
THREADS=none
;;
*-*-irix*)
# FIXME: for now, choose POSIX, because we implement that.
# Later, choose irix threads.