Commit 1ba2dbaa by J. David Anglin Committed by Jeff Law

configure.in: Use default thread_file even when enable_threads is yes or dce because...

        * configure.in: Use default thread_file even when enable_threads is
        yes or dce because hpux10.20 pa port uses MULTILIB implementation.
        * configure: Rebuilt.

From-SVN: r35488
parent c54dbf8b
2000-08-04 J. David Anglin <dave@hiauly1.hia.nrc.ca> 2000-08-04 J. David Anglin <dave@hiauly1.hia.nrc.ca>
* configure.in: Use default thread_file even when enable_threads is
yes or dce because hpux10.20 pa port uses MULTILIB implementation.
* configure: Rebuilt.
* gthr-dce.h (__gthread_objc_condition_allocate): Fix typo. * gthr-dce.h (__gthread_objc_condition_allocate): Fix typo.
2000-08-04 Donn Terry (donnte@microsoft.com) 2000-08-04 Donn Terry (donnte@microsoft.com)
......
...@@ -1134,10 +1134,11 @@ changequote([,])dnl ...@@ -1134,10 +1134,11 @@ changequote([,])dnl
if test x$enable_threads = x; then if test x$enable_threads = x; then
enable_threads=$have_pthread_h enable_threads=$have_pthread_h
fi fi
if test x$enable_threads = xyes; then case x${enable_threads} in
thread_file='dce' xyes | xdce)
tmake_file="${tmake_file} pa/t-dce-thr" tmake_file="${tmake_file} pa/t-dce-thr"
fi ;;
esac
install_headers_dir=install-headers-cpio install_headers_dir=install-headers-cpio
use_collect2=yes use_collect2=yes
;; ;;
...@@ -1154,10 +1155,11 @@ changequote([,])dnl ...@@ -1154,10 +1155,11 @@ changequote([,])dnl
if test x$enable_threads = x; then if test x$enable_threads = x; then
enable_threads=$have_pthread_h enable_threads=$have_pthread_h
fi fi
if test x$enable_threads = xyes; then case x${enable_threads} in
thread_file='dce' xyes | xdce)
tmake_file="${tmake_file} pa/t-dce-thr" tmake_file="${tmake_file} pa/t-dce-thr"
fi ;;
esac
install_headers_dir=install-headers-cpio install_headers_dir=install-headers-cpio
use_collect2=yes use_collect2=yes
;; ;;
......
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