This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


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

Re: [Fwd: Minor RTEMS patch (configure stanzas in wrong order)]



Thanks.  Installed.  Sorry about the delay.

  In message <387F8999.C8640E8C@OARcorp.com>you write:
  > This is a multi-part message in MIME format.
  > --------------1EF0D747B065A89AD0EF76A6
  > Content-Type: text/plain; charset=us-ascii
  > Content-Transfer-Encoding: 7bit
  > 
  > 
  > We have switched to qmail and end up accidentally as an open
  > relay.  We are trying to resolve it but until then, oarcorp.com
  > is banned from gcc-patches.   In the meantime, I have forwarded
  > you the minor patch.
  > 
  > Do you know of any qmail experts?  We can't seem to quite
  > get the syntax right to allow relays only from our internal
  > network.
  > 
  > -- 
  > Joel Sherrill, Ph.D.             Director of Research & Development
  > joel@OARcorp.com                 On-Line Applications Research
  > Ask me about RTEMS: a free RTOS  Huntsville AL 35805
  >    Support Available             (256) 722-9985
  > --------------1EF0D747B065A89AD0EF76A6
  > Content-Type: message/rfc822
  > Content-Transfer-Encoding: 7bit
  > Content-Disposition: inline
  > 
  > Message-ID: <387F7FA1.E4D62916@OARcorp.com>
  > Date: Fri, 14 Jan 2000 13:57:21 -0600
  > From: Joel Sherrill <joel.sherrill@OARcorp.com>
  > Reply-To: joel.sherrill@OARcorp.com
  > Organization: OAR Corporation
  > X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.5-15smp i686)
  > X-Accept-Language: en
  > MIME-Version: 1.0
  > To: gcc-patches@gcc.gnu.org
  > Subject: Minor RTEMS patch (configure stanzas in wrong order)
  > Content-Type: multipart/mixed;
  >  boundary="------------5D257F23DA6CDD1DDCE3A660"
  > 
  > This is a multi-part message in MIME format.
  > --------------5D257F23DA6CDD1DDCE3A660
  > Content-Type: text/plain; charset=us-ascii
  > Content-Transfer-Encoding: 7bit
  > 
  > 
  > The current configure.in in cvs has the i386-rtems 
  > target stanzas in the wrong order.  As a consequence,
  > the default is tripped when it should not.
  > 
  > The small patch attached swaps the order of two target
  > sections.  ALthough it does not look like it from this
  > patch, it just moves a handful of lines up in the file.
  > 
  > 2000-01-14  Joel Sherrill (joel@OARcorp.com>
  > 
  > 	* configure.in: (i*86-*-rtems*): Swapped elf and coff
  > 	stanzas so i386-rtemscoff could actually be enabled.
  > 
  > -- 
  > Joel Sherrill, Ph.D.             Director of Research & Development
  > joel@OARcorp.com                 On-Line Applications Research
  > Ask me about RTEMS: a free RTOS  Huntsville AL 35805
  >    Support Available             (256) 722-9985
  > --------------5D257F23DA6CDD1DDCE3A660
  > Content-Type: text/plain; charset=us-ascii;
  >  name="j"
  > Content-Transfer-Encoding: 7bit
  > Content-Disposition: inline;
  >  filename="j"
  > 
  > Index: configure.in
  > ===================================================================
  > RCS file: /cvs/gcc/egcs/gcc/configure.in,v
  > retrieving revision 1.324
  > diff -u -r1.324 configure.in
  > --- configure.in	2000/01/13 15:36:24	1.324
  > +++ configure.in	2000/01/14 19:00:59
  > @@ -1505,19 +1505,19 @@
  >  		tmake_file="i386/t-go32 t-rtems"
  >  		;;
  >  changequote(,)dnl
  > -	i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
  > +	i[34567]86-*-rtemscoff*)
  >  changequote([,])dnl
  >  		cpu_type=i386
  > -		tm_file=i386/rtemself.h
  > -		extra_parts="crtbegin.o crtend.o crti.o crtn.o"
  > -		tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
  > +		tm_file=i386/rtems.h
  > +		tmake_file="i386/t-i386bare t-rtems"
  >  		;;
  >  changequote(,)dnl
  > -	i[34567]86-*-rtemscoff*)
  > +	i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
  >  changequote([,])dnl
  >  		cpu_type=i386
  > -		tm_file=i386/rtems.h
  > -		tmake_file="i386/t-i386bare t-rtems"
  > +		tm_file=i386/rtemself.h
  > +		extra_parts="crtbegin.o crtend.o crti.o crtn.o"
  > +		tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
  >  		;;
  >  changequote(,)dnl
  >  	i[34567]86-*-sco3.2v5*)	# 80386 running SCO Open Server 5
  > 
  > --------------5D257F23DA6CDD1DDCE3A660--
  > 
  > --------------1EF0D747B065A89AD0EF76A6--
  > 
  > 



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