This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [patch] Set SER_HARDWIRE using autoconf


Eli Zaretskii wrote:

> No, you need to put ser-go32.o into SER_HARDWIRE in both of the above
> cases.

Ok,  I've committed the following.

	thanks,	
		Andrew
Wed Jul  5 20:48:22 2000  Andrew Cagney  <cagney@b1.cygnus.com>

	* configure.in (SER_HARDWIRE): When go32 or DJGPP, set to
 	ser-go32.c.
	* configure: Re-generate.
	
Index: configure.in
===================================================================
RCS file: /cvs/src/src/gdb/configure.in,v
retrieving revision 1.38
diff -p -r1.38 configure.in
*** configure.in	2000/07/05 10:25:43	1.38
--- configure.in	2000/07/05 10:49:36
*************** lose
*** 631,637 ****
  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)
  
--- 631,638 ----
  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 ;;
!   *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
  esac
  AC_SUBST(SER_HARDWIRE)
  

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]