diff options
author | Tom Tromey <tromey@redhat.com> | 2002-03-23 16:14:28 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2002-03-23 16:14:28 +0000 |
commit | f5c5a4e915e5344ee92ed23a07db1033e1144914 (patch) | |
tree | 43120f69f595e46853b03dff67a904caf6715539 /libjava/configure.host | |
parent | 9817ad7792be3e68cd228cef2b538e78fef10396 (diff) | |
download | gcc-f5c5a4e915e5344ee92ed23a07db1033e1144914.zip gcc-f5c5a4e915e5344ee92ed23a07db1033e1144914.tar.gz gcc-f5c5a4e915e5344ee92ed23a07db1033e1144914.tar.bz2 |
name-finder.h (_Jv_name_finder::myclose): New method.
* include/name-finder.h (_Jv_name_finder::myclose): New method.
* name-finder.cc (_Jv_name_finder): Initialize file descriptors.
From-SVN: r51234
Diffstat (limited to 'libjava/configure.host')
-rw-r--r-- | libjava/configure.host | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libjava/configure.host b/libjava/configure.host index 8c48e82..46cb037 100644 --- a/libjava/configure.host +++ b/libjava/configure.host @@ -76,7 +76,14 @@ case "${host}" in libgcj_interpreter=yes libgcj_cxxflags="-D__NO_MATH_INLINES" libgcj_cflags="-D__NO_MATH_INLINES" - DIVIDESPEC=-fno-use-divide-subroutine + case "${host}" in + i?86-*-solaris2*) + # Keep default. + ;; + *) + DIVIDESPEC=-fno-use-divide-subroutine + ;; + esac enable_hash_synchronization_default=yes slow_pthread_self=yes ;; |