aboutsummaryrefslogtreecommitdiff
path: root/gcc/config.gcc
diff options
context:
space:
mode:
authorAaron W. LaFramboise <aaronraolete36@aaronwl.com>2004-07-08 01:28:54 +0000
committerPer Bothner <bothner@gcc.gnu.org>2004-07-07 18:28:54 -0700
commit50c0d3fde02a62bb75fb52d84e6b669feec2ed3a (patch)
tree38a9e2f3e2866e832e867615c4f8e66f95b55ec7 /gcc/config.gcc
parentc03e0096ad9a801a02dad387bc082ef75d73aee9 (diff)
downloadgcc-50c0d3fde02a62bb75fb52d84e6b669feec2ed3a.zip
gcc-50c0d3fde02a62bb75fb52d84e6b669feec2ed3a.tar.gz
gcc-50c0d3fde02a62bb75fb52d84e6b669feec2ed3a.tar.bz2
* config.gcc (i[34567]86-*-mingw32*): Enable threads by default.
From-SVN: r84255
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r--gcc/config.gcc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 2d70d44..9bbda81 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -1037,9 +1037,9 @@ i[34567]86-*-mingw32*)
tmake_file="i386/t-cygming i386/t-mingw32"
target_gtfiles="\$(srcdir)/config/i386/winnt.c"
extra_objs=winnt.o
- if test x$enable_threads = xyes; then
- thread_file='win32'
- fi
+ case ${enable_threads} in
+ "" | yes | win32) thread_file='win32' ;;
+ esac
case ${target} in
*mingw32crt*)
tm_file="${tm_file} i386/crtdll.h"