aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.in
diff options
context:
space:
mode:
authorJ. David Anglin <dave@hiauly1.hia.nrc.ca>2000-08-04 17:39:19 +0000
committerJeff Law <law@gcc.gnu.org>2000-08-04 11:39:19 -0600
commit1ba2dbaa74820cb652e0980034282230a09968ae (patch)
treef1c7febfaa1c3254786fcb9b8144a9db51ebf05d /gcc/configure.in
parentc54dbf8b44905964d2327ec801d05276dc2333de (diff)
downloadgcc-1ba2dbaa74820cb652e0980034282230a09968ae.zip
gcc-1ba2dbaa74820cb652e0980034282230a09968ae.tar.gz
gcc-1ba2dbaa74820cb652e0980034282230a09968ae.tar.bz2
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
Diffstat (limited to 'gcc/configure.in')
-rw-r--r--gcc/configure.in14
1 files changed, 8 insertions, 6 deletions
diff --git a/gcc/configure.in b/gcc/configure.in
index 262ee46..a860e78 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -1134,10 +1134,11 @@ changequote([,])dnl
if test x$enable_threads = x; then
enable_threads=$have_pthread_h
fi
- if test x$enable_threads = xyes; then
- thread_file='dce'
+ case x${enable_threads} in
+ xyes | xdce)
tmake_file="${tmake_file} pa/t-dce-thr"
- fi
+ ;;
+ esac
install_headers_dir=install-headers-cpio
use_collect2=yes
;;
@@ -1154,10 +1155,11 @@ changequote([,])dnl
if test x$enable_threads = x; then
enable_threads=$have_pthread_h
fi
- if test x$enable_threads = xyes; then
- thread_file='dce'
+ case x${enable_threads} in
+ xyes | xdce)
tmake_file="${tmake_file} pa/t-dce-thr"
- fi
+ ;;
+ esac
install_headers_dir=install-headers-cpio
use_collect2=yes
;;