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:
parent
14400a5922
commit
c030bee9a8
@ -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
4
boehm-gc/configure
vendored
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user