Commit d1054723 by Doug Evans

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
parent 88393a07
...@@ -277,7 +277,7 @@ for machine in $build $host $target; do ...@@ -277,7 +277,7 @@ for machine in $build $host $target; do
fixincludes=Makefile.in fixincludes=Makefile.in
extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
gas=yes gnu_ld=yes gas=yes gnu_ld=yes
if [[ x$thread_file = x ]]; then if [[ x$enable_threads = xyes ]]; then
thread_file='posix' thread_file='posix'
fi fi
;; ;;
...@@ -1468,7 +1468,7 @@ for machine in $build $host $target; do ...@@ -1468,7 +1468,7 @@ for machine in $build $host $target; do
fixincludes=Makefile.in #On Linux, the headers are ok already. fixincludes=Makefile.in #On Linux, the headers are ok already.
extra_headers=math-68881.h extra_headers=math-68881.h
gnu_ld=yes gnu_ld=yes
if [[ x$thread_file = x ]]; then if [[ x$enable_threads = xyes ]]; then
thread_file='posix' thread_file='posix'
fi fi
;; ;;
...@@ -2147,7 +2147,7 @@ for machine in $build $host $target; do ...@@ -2147,7 +2147,7 @@ for machine in $build $host $target; do
fixincludes=Makefile.in fixincludes=Makefile.in
extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
extra_headers=ppc-asm.h extra_headers=ppc-asm.h
if [[ x$thread_file = x ]]; then if [[ x$enable_threads = xyes ]]; then
thread_file='posix' thread_file='posix'
fi fi
;; ;;
...@@ -2325,7 +2325,7 @@ for machine in $build $host $target; do ...@@ -2325,7 +2325,7 @@ for machine in $build $host $target; do
fixincludes=Makefile.in #On Linux, the headers are ok already. fixincludes=Makefile.in #On Linux, the headers are ok already.
broken_install=yes broken_install=yes
gnu_ld=yes gnu_ld=yes
if [[ x$thread_file = x ]]; then if [[ x$enable_threads = xyes ]]; then
thread_file='posix' thread_file='posix'
fi fi
;; ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment