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
This commit is contained in:
Jeffrey A Law 1998-03-19 22:51:01 +00:00 committed by Jeff Law
parent ff36954809
commit d005a5a4ed
3 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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.

7
gcc/configure vendored
View File

@ -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
;;

View File

@ -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
;;