Commit d005a5a4 by Jeffrey A Law Committed by Jeff Law

configure.in (hppa1.0-hp-hpux10): Handle threads for this config too.

        * configure.in (hppa1.0-hp-hpux10): Handle threads for this
        config too.

From-SVN: r18721
parent ff369548
Thu Mar 19 23:51:01 1998 Jeffrey A Law (law@cygnus.com)
* configure.in (hppa1.0-hp-hpux10): Handle threads for this
config too.
Thu Mar 19 20:30:31 1998 Philippe De Muyter <phdm@macqel.be>
* libgcc2.c (exit): Do not call __bb_exit_func if HAVE_ATEXIT.
......
......@@ -2491,6 +2491,13 @@ for machine in $build $host $target; do
then
tm_file="${tm_file} pa/pa-gas.h"
fi
if [ x$enable_threads = x ]; then
enable_threads=$have_pthread_h
fi
if [ x$enable_threads = xyes ]; then
thread_file='dce'
tmake_file="${tmake_file} pa/t-dce-thr"
fi
install_headers_dir=install-headers-cpio
use_collect2=yes
;;
......
......@@ -610,6 +610,13 @@ for machine in $build $host $target; do
then
tm_file="${tm_file} pa/pa-gas.h"
fi
if [[ x$enable_threads = x ]]; then
enable_threads=$have_pthread_h
fi
if [[ x$enable_threads = xyes ]]; then
thread_file='dce'
tmake_file="${tmake_file} pa/t-dce-thr"
fi
install_headers_dir=install-headers-cpio
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