summaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-05-27 00:11:14 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-05-27 00:11:14 +0000
commitb1a4d342956ac770af8d482449eb576ccb99cf71 (patch)
tree5b209af1ec5b5b2e0755c39b8907553901ea67f9 /gdb/configure.in
parent764184ca9385ebaabe44e5dbf8534e1cd1824fa6 (diff)
downloadgdb-cvs/gdb-4_18-branch.tar.gz
1999-04-26 Jim Blandy <jimb@zwingli.cygnus.com>gdb-4_18-branchcvs/gdb-4_18-branch
Fix from Dave Holcomb. * hpux-thread.c (init_hpux_thread_ops): Use the right function name when initializing hpux_thread_ops.to_thread_alive. 1999-04-13 Jason Molenda (jsm@bugshack.cygnus.com) * configure.in (HAVE_MULTIPLE_PROC_FDS): Don't define if we're on a Solaris host (of any architecture). * configure: Regenerated.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index d6581183792..9a596b5de84 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -109,16 +109,20 @@ AC_MSG_RESULT($gdb_cv_hpux_sswide)
# Also detect which type of /proc is in use, such as for Unixware.
if test "${target}" = "${host}"; then
+ gdb_cv_hostos_is_solaris=no
case "${host}" in
i[[3456]]86-*-linux*)
AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
AC_DEFINE(sys_quotactl)
;;
+ *-*-solaris*)
+ gdb_cv_hostos_is_solaris=yes ;;
esac
AC_MSG_CHECKING(for directory proc entries)
# The [gdb_host != sun4sol2] hack is because Solaris does provide the
# multiple procfs files as of Solaris 2.6, but GDB can't use it right now.
- if test "$ac_cv_header_sys_procfs_h" = yes -a "$gdb_host" != sun4sol2 \
+ if test "$ac_cv_header_sys_procfs_h" = yes -a \
+ "$gdb_cv_hostos_is_solaris" = no \
-a -d /proc/$$ \
-a -f /proc/$$/ctl \
-a -f /proc/$$/as \