diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-07-24 04:20:09 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-07-24 04:20:09 +0000 |
commit | c030bee9a8439e19e5f4f2a73254c14e665199f5 (patch) | |
tree | 0b04415dd5a4aa9c7553af56ff8aeb2761674a36 /boehm-gc/configure | |
parent | 14400a5922bd20f7e05a6ec18e0794e394590a62 (diff) | |
download | gcc-c030bee9a8439e19e5f4f2a73254c14e665199f5.zip gcc-c030bee9a8439e19e5f4f2a73254c14e665199f5.tar.gz gcc-c030bee9a8439e19e5f4f2a73254c14e665199f5.tar.bz2 |
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
Diffstat (limited to 'boehm-gc/configure')
-rwxr-xr-x | boehm-gc/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/boehm-gc/configure b/boehm-gc/configure index 5f3ab65..95e7184 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. |