diff options
author | Martin Hunt <hunt@redhat.com> | 1997-03-19 23:39:20 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 1997-03-19 23:39:20 +0000 |
commit | 8a19b35a1b19df6c9fc9f1072073ff0c702157bb (patch) | |
tree | e1b5b691a4c262d6f4366a183c542ef48a13bcf8 /gdb/configure.in | |
parent | 7dd2696140dbc0e88460b2f81523230e122c0be1 (diff) | |
download | gdb-8a19b35a1b19df6c9fc9f1072073ff0c702157bb.zip gdb-8a19b35a1b19df6c9fc9f1072073ff0c702157bb.tar.gz gdb-8a19b35a1b19df6c9fc9f1072073ff0c702157bb.tar.bz2 |
Wed Mar 19 15:16:17 1997 Martin M. Hunt <hunt@onions.cygnus.com>
* 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.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 13 |
1 files changed, 11 insertions, 2 deletions
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 |