Skip to content

Commit

Permalink
* configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
Browse files Browse the repository at this point in the history
* configure: Rebuilt.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35218 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
aoliva committed Jul 24, 2000
1 parent d5de1ce commit 085af40
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions boehm-gc/ChangeLog
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
4 changes: 4 additions & 0 deletions boehm-gc/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 4 additions & 0 deletions boehm-gc/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 085af40

Please sign in to comment.