diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-03-19 22:51:01 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-19 15:51:01 -0700 |
commit | d005a5a4edcf346424c37a129aa3a5260e690700 (patch) | |
tree | 4cd356714da4eb9dc94ec78a7532bb1070b6c41b /gcc | |
parent | ff36954809a7b99a9ea0927d11b1899d4e4914d1 (diff) | |
download | gcc-d005a5a4edcf346424c37a129aa3a5260e690700.zip gcc-d005a5a4edcf346424c37a129aa3a5260e690700.tar.gz gcc-d005a5a4edcf346424c37a129aa3a5260e690700.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 7 | ||||
-rw-r--r-- | gcc/configure.in | 7 |
3 files changed, 19 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d587b1e..dd82ed6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/configure b/gcc/configure index 81eb4d4..3e71245 100755 --- a/gcc/configure +++ b/gcc/configure @@ -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 ;; diff --git a/gcc/configure.in b/gcc/configure.in index d23bd9b..a01dcd4 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -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 ;; |