aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>1998-12-30 06:18:02 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>1998-12-30 06:18:02 +0000
commitd846c99ee4c5906a6b6bb7fdc56485fec4a1cece (patch)
tree5259d041a7b1e143920499254ccb90134a21c69f /configure.in
parent18ee5bf817e5865cf88144153b7eb3dbdf5ec8ef (diff)
downloadgdb-d846c99ee4c5906a6b6bb7fdc56485fec4a1cece.zip
gdb-d846c99ee4c5906a6b6bb7fdc56485fec4a1cece.tar.gz
gdb-d846c99ee4c5906a6b6bb7fdc56485fec4a1cece.tar.bz2
* configure.in: libtermcap.a should be built when cygwin is the
target as well as the host. * config.guess: Allow mixed case in cygwin uname output. * Makefile.in: Add libtermcap target. * config/mt-cygwin: New file. libtermcap target info.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 3cbc5a3..4f38937 100644
--- a/configure.in
+++ b/configure.in
@@ -359,6 +359,9 @@ case "${target}" in
*-*-linux-gnu)
target_makefile_frag="${target_makefile_frag} config/mt-linux"
;;
+ *-cygwin*)
+ target_makefile_frag="${target_makefile_frag} config/mt-cygwin"
+ ;;
esac
# If --enable-target-optspace always use -Os instead of -O2 to build
@@ -713,8 +716,8 @@ case "${target}" in
esac
;;
*-*-cygwin*)
- target_configdirs="$target_configdirs target-winsup"
- noconfigdirs="$noconfigdirs target-gperf target-libgloss"
+ target_configdirs="$target_configdirs target-libtermcap target-winsup"
+ noconfigdirs="$noconfigdirs target-libgloss"
# always build newlib.
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`