]> gcc.gnu.org Git - gcc.git/commitdiff
* config.gcc (i[34567]86-*-mingw32*): Enable threads by default.
authorAaron W. LaFramboise <aaronraolete36@aaronwl.com>
Thu, 8 Jul 2004 01:28:54 +0000 (01:28 +0000)
committerPer Bothner <bothner@gcc.gnu.org>
Thu, 8 Jul 2004 01:28:54 +0000 (18:28 -0700)
From-SVN: r84255

gcc/ChangeLog
gcc/config.gcc

index 3c6994836843342828b849034503aac1365f274c..160c0e355564384158b31931e29f21cc8f48c1bc 100644 (file)
@@ -1,3 +1,7 @@
+2004-05-28  Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
+
+       * config.gcc (i[34567]86-*-mingw32*): Enable threads by default.
+
 2004-07-07  Per Bothner  <per@bothner.com>
 
        * flow.c (attempt_auto_inc):  Remove now-redundant PUT_CODE.
index 2d70d44708cb6fb2201d320329342fed38c7c7d5..9bbda81f8d49de060fb90594c468fd7fc1ad6276 100644 (file)
@@ -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"
This page took 0.114168 seconds and 5 git commands to generate.