diff options
author | Gilles Zunino <Gilles.Zunino@hei.fr> | 1999-05-05 13:52:03 +0200 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-05-05 11:52:03 +0000 |
commit | 395e3bf94cb0c810ef09999ce433715e9bbb103d (patch) | |
tree | deaab6ebd2f10c4a8c96fa38e0662fa937dbc1f9 /libjava/configure.in | |
parent | b3f738daccbef7cc569f328c93fb93f1029294f9 (diff) | |
download | gcc-395e3bf94cb0c810ef09999ce433715e9bbb103d.zip gcc-395e3bf94cb0c810ef09999ce433715e9bbb103d.tar.gz gcc-395e3bf94cb0c810ef09999ce433715e9bbb103d.tar.bz2 |
configure.in: Switch from irix threads to posix threads
1999-05-05 Gilles Zunino <Gilles.Zunino@hei.fr>
* configure.in: Switch from irix threads to posix threads
* configure: Regenerate.
From-SVN: r26781
Diffstat (limited to 'libjava/configure.in')
-rw-r--r-- | libjava/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libjava/configure.in b/libjava/configure.in index 3bd97f3..9be0d87 100644 --- a/libjava/configure.in +++ b/libjava/configure.in @@ -140,7 +140,9 @@ if test "$THREADS" = yes; then THREADS=win32 ;; *-*-irix*) - THREADS=irix + # FIXME: for now, choose POSIX, because we implement that. + # Later, choose irix threads. + THREADS=posix ;; *-*-solaris*) # FIXME: for now, choose POSIX, because we implement that. |