diff options
author | Doug Evans <dje@gnu.org> | 1997-07-25 19:42:24 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1997-07-25 19:42:24 +0000 |
commit | d1054723e03aa692396441770e0d3fc8d54e83c6 (patch) | |
tree | 65981994fe7a2ae819b19bbaa7cc5f03860e137c | |
parent | 88393a073ba71183c04fad2b5700219a1f98c87d (diff) | |
download | gcc-d1054723e03aa692396441770e0d3fc8d54e83c6.zip gcc-d1054723e03aa692396441770e0d3fc8d54e83c6.tar.gz gcc-d1054723e03aa692396441770e0d3fc8d54e83c6.tar.bz2 |
configure.in: Finish fixing calculation if default thread support is enabled.
* configure.in: Finish fixing calculation if default thread
support is enabled.
From-SVN: r14530
-rw-r--r-- | gcc/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index 81d9dfd..f18d230 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -277,7 +277,7 @@ for machine in $build $host $target; do fixincludes=Makefile.in extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" gas=yes gnu_ld=yes - if [[ x$thread_file = x ]]; then + if [[ x$enable_threads = xyes ]]; then thread_file='posix' fi ;; @@ -1468,7 +1468,7 @@ for machine in $build $host $target; do fixincludes=Makefile.in #On Linux, the headers are ok already. extra_headers=math-68881.h gnu_ld=yes - if [[ x$thread_file = x ]]; then + if [[ x$enable_threads = xyes ]]; then thread_file='posix' fi ;; @@ -2147,7 +2147,7 @@ for machine in $build $host $target; do fixincludes=Makefile.in extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" extra_headers=ppc-asm.h - if [[ x$thread_file = x ]]; then + if [[ x$enable_threads = xyes ]]; then thread_file='posix' fi ;; @@ -2325,7 +2325,7 @@ for machine in $build $host $target; do fixincludes=Makefile.in #On Linux, the headers are ok already. broken_install=yes gnu_ld=yes - if [[ x$thread_file = x ]]; then + if [[ x$enable_threads = xyes ]]; then thread_file='posix' fi ;; |