aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2003-10-08 21:32:50 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2003-10-08 21:32:50 +0000
commit769e49eb03b412604d9909b9e9c8ab4a87703dd1 (patch)
tree99b1803cdc1cea5aaa1bcc9a010c4f34994ad559 /gcc/configure
parent731a8127dbb6a297ca1579df45ca25db95fe737d (diff)
downloadgcc-769e49eb03b412604d9909b9e9c8ab4a87703dd1.zip
gcc-769e49eb03b412604d9909b9e9c8ab4a87703dd1.tar.gz
gcc-769e49eb03b412604d9909b9e9c8ab4a87703dd1.tar.bz2
config.gcc: Don't accept --enable-threads=pthreads.
* config.gcc: Don't accept --enable-threads=pthreads. Clean up related case statements. * configure.in: Don't accept --enable-threads=pthreads, decosf1, mach, or os2 (none of which work anyway). Alphabetize supported thread files in case clause. * configure: Regenerate. From-SVN: r72244
Diffstat (limited to 'gcc/configure')
-rwxr-xr-xgcc/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure
index 214c0fc..ce98920 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -5248,8 +5248,8 @@ case ${enable_threads_flag} in
# default
target_thread_file='single'
;;
- decosf1 | irix | mach | os2 | posix | pthreads | single | \
- solaris | win32 | dce | rtems| vxworks | aix | gnat)
+ aix | dce | gnat | irix | posix | rtems | \
+ single | solaris | vxworks | win32 )
target_thread_file=${enable_threads_flag}
;;
*)