diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-06-12 06:09:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-06-12 06:09:06 +0000 |
commit | aff38e615afd1228264b250e9046acf191886d79 (patch) | |
tree | 99d3db4aacb704236134a32411ec808f4aa0eb95 /gdb/configure.in | |
parent | 5213ab06927fc0c8cc3d461c641a56e35eb50e6d (diff) | |
download | gdb-aff38e615afd1228264b250e9046acf191886d79.zip gdb-aff38e615afd1228264b250e9046acf191886d79.tar.gz gdb-aff38e615afd1228264b250e9046acf191886d79.tar.bz2 |
Set SER_HARDWIRE using autoconf instead of via XDEPFILES. Include
ser-tcp.o by default.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 958ff9c..df54308 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -626,6 +626,15 @@ AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin, lose #endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])]) + +dnl Figure out which of the many generic ser-*.c files the _host_ supports. +SER_HARDWIRE="ser-unix.o ser-pipe.o ser-tcp.o" +case ${host} in + go32*-*-* ) SER_HARDWIRE=ser-go32.o ;; +esac +AC_SUBST(SER_HARDWIRE) + + dnl Figure out which term library to use. if test x$gdb_host = xgo32; then TERM_LIB= |