From 8a19b35a1b19df6c9fc9f1072073ff0c702157bb Mon Sep 17 00:00:00 2001 From: Martin Hunt Date: Wed, 19 Mar 1997 23:39:20 +0000 Subject: Wed Mar 19 15:16:17 1997 Martin M. Hunt * Makefile.in: Install gdbtcl dir instead of gdbtk.tcl. * gdbtk.c: Added some ifdefs for Windows. Changed GDBTK_FILENAME to GDBTK_LIBRARY, which is now a path to search. (gdb_path_conv): New function. Convert Cygwin32 pathname to DOS-style pathname. * aclocal.m4, configure.in: Changes for Windows builds. * configure: Rebuilt. --- gdb/configure.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'gdb/configure.in') diff --git a/gdb/configure.in b/gdb/configure.in index 2498c1e..be3a7ba 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -255,7 +255,7 @@ AC_ARG_ENABLE(gdbtk, *go32*) AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.]) enable_gdbtk=no ;; - *cygwin32* | *windows*) + *windows*) AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.]) enable_gdbtk=no ;; *) @@ -269,13 +269,22 @@ esac], [ # Default is on for everything but go32 and cygwin32 case "$host" in - *go32* | *cygwin32* | *windows*) + *go32* | *windows*) ;; *) enable_gdbtk=yes ;; esac ]) +case "${target}" in +*-cygwin32) + configdir="win" + ;; +*) + configdir="unix" + ;; +esac + if test "${enable_gdbtk}" = "yes"; then CY_AC_PATH_TCLCONFIG -- cgit v1.1