diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-24 04:20:09 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-24 04:20:09 +0000 |
commit | 085af401e18f5c2a2dae9de2b1f4647e917e17a9 (patch) | |
tree | 0b04415dd5a4aa9c7553af56ff8aeb2761674a36 /boehm-gc | |
parent | d5de1ce6d18342bd405ea31ea2b6903fbf275c3c (diff) | |
download | gcc-085af401e18f5c2a2dae9de2b1f4647e917e17a9.tar.gz |
* configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35218 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 3 | ||||
-rwxr-xr-x | boehm-gc/configure | 4 | ||||
-rw-r--r-- | boehm-gc/configure.in | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index f9f4b9e88fa..47a7e7bdedd 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -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> diff --git a/boehm-gc/configure b/boehm-gc/configure index 5f3ab655330..95e7184b90c 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -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. diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index 5d5e25d0333..f11cec8a33a 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -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. |