diff options
author | Aaron W. LaFramboise <aaronraolete36@aaronwl.com> | 2004-07-08 01:28:54 +0000 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2004-07-07 18:28:54 -0700 |
commit | 50c0d3fde02a62bb75fb52d84e6b669feec2ed3a (patch) | |
tree | 38a9e2f3e2866e832e867615c4f8e66f95b55ec7 /gcc | |
parent | c03e0096ad9a801a02dad387bc082ef75d73aee9 (diff) | |
download | gcc-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')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.gcc | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c69948..160c0e3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. 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" |