diff options
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 7 |
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 |