From: Aaron W. LaFramboise Date: Thu, 8 Jul 2004 01:28:54 +0000 (+0000) Subject: * config.gcc (i[34567]86-*-mingw32*): Enable threads by default. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50c0d3fde02a62bb75fb52d84e6b669feec2ed3a;p=gcc.git * config.gcc (i[34567]86-*-mingw32*): Enable threads by default. From-SVN: r84255 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c699483684..160c0e35556 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-05-28 Aaron W. LaFramboise + + * config.gcc (i[34567]86-*-mingw32*): Enable threads by default. + 2004-07-07 Per Bothner * flow.c (attempt_auto_inc): Remove now-redundant PUT_CODE. diff --git a/gcc/config.gcc b/gcc/config.gcc index 2d70d44708c..9bbda81f8d4 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"