aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorGeoffrey Noer <noer@cygnus>1996-06-20 00:29:38 +0000
committerGeoffrey Noer <noer@cygnus>1996-06-20 00:29:38 +0000
commitb613bfbf2cacd77299506be64ccdc0f9e827a95d (patch)
treef2e2edeba46d7df26ab1209323165c9eec46499f /gdb/configure.in
parent0d6cae1e69030606f1feef350857dc1885e4662a (diff)
downloadgdb-b613bfbf2cacd77299506be64ccdc0f9e827a95d.zip
gdb-b613bfbf2cacd77299506be64ccdc0f9e827a95d.tar.gz
gdb-b613bfbf2cacd77299506be64ccdc0f9e827a95d.tar.bz2
Changes to gdbtk configury so cygwin32 hosts (in addition to go32)
are configured without gdbtk
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index 7b549ce..05be6ca 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -165,6 +165,9 @@ AC_ARG_ENABLE(gdbtk,
*go32*)
AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
enable_gdbtk=no ;;
+ *cygwin32*)
+ AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
+ enable_gdbtk=no ;;
*)
enable_gdbtk=yes ;;
esac ;;
@@ -174,10 +177,12 @@ AC_ARG_ENABLE(gdbtk,
AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
esac],
[
-# Default is on for everything but go32
+# Default is on for everything but go32 and cygwin32
case "$host" in
*go32*)
;;
+ *cygwin32*)
+ ;;
*)
enable_gdbtk=yes ;;
esac