<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-04-26)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ericn</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>    * startup/bspstart.c: Clean up some warnings.
    * network/network.c: Fix up full/half duplex printout and some warnings.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/m68k/uC5282/ChangeLog.diff?r1=text&tr1=1.112&r2=text&tr2=1.113&diff_format=h">M</a></td><td width='1%'>1.113</td><td width='100%'>c/src/lib/libbsp/m68k/uC5282/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/m68k/uC5282/network/network.c.diff?r1=text&tr1=1.27&r2=text&tr2=1.28&diff_format=h">M</a></td><td width='1%'>1.28</td><td width='100%'>c/src/lib/libbsp/m68k/uC5282/network/network.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c.diff?r1=text&tr1=1.58&r2=text&tr2=1.59&diff_format=h">M</a></td><td width='1%'>1.59</td><td width='100%'>c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/m68k/uC5282/ChangeLog:1.112 rtems/c/src/lib/libbsp/m68k/uC5282/ChangeLog:1.113
--- rtems/c/src/lib/libbsp/m68k/uC5282/ChangeLog:1.112  Thu Apr  8 08:20:19 2010
+++ rtems/c/src/lib/libbsp/m68k/uC5282/ChangeLog        Mon Apr 26 12:44:57 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-04-26  Eric Norum <norume@aps.anl.gov>
+
+    * startup/bspstart.c: Clean up some warnings.
+    * network/network.c: Fix up full/half duplex printout and some warnings.
+
</font> 2010-04-08        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * start/start.S: Spacing.

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/m68k/uC5282/network/network.c:1.27 rtems/c/src/lib/libbsp/m68k/uC5282/network/network.c:1.28
--- rtems/c/src/lib/libbsp/m68k/uC5282/network/network.c:1.27   Sun Nov 29 08:59:41 2009
+++ rtems/c/src/lib/libbsp/m68k/uC5282/network/network.c        Mon Apr 26 12:44:57 2010
</font><font color='#997700'>@@ -831,7 +831,7 @@
</font>         else {
             fixed = 1;
             speed = sc->mii_cr & 0x2000 ? 100 : 10;
<font color='#880000'>-            full = sc->mii_cr & 0x100 ? "full" : "half";
</font><font color='#000088'>+            full = sc->mii_cr & 0x100 ? 1 : 0;
</font>         }
         printf("Link %s %d Mb/s, %s-duplex.\n",
                                             fixed ? "fixed" : "auto-negotiate",
<font color='#997700'>@@ -872,7 +872,7 @@
</font> }
 
 static int
<font color='#880000'>-fec_ioctl(struct ifnet *ifp, int command, caddr_t data)
</font><font color='#000088'>+fec_ioctl(struct ifnet *ifp, ioctl_command_t command, caddr_t data)
</font> {
     struct mcf5282_enet_struct *sc = ifp->if_softc;
     int error = 0;
<font color='#997700'>@@ -925,7 +925,7 @@
</font>     int mtu;
     int unitNumber;
     char *unitName;
<font color='#880000'>-    unsigned char *hwaddr;
</font><font color='#000088'>+    const unsigned char *hwaddr;
</font>     const char *env;
 
     /*

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c:1.58 rtems/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c:1.59
--- rtems/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c:1.58  Sun Nov 29 08:59:41 2009
+++ rtems/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c       Mon Apr 26 12:44:57 2010
</font><font color='#997700'>@@ -21,6 +21,7 @@
</font> #include <bsp.h>
 #include <rtems/error.h>
 #include <errno.h>
<font color='#000088'>+#include <stdio.h>
</font> 
 /*
  * Location of 'VME' access
<font color='#997700'>@@ -184,7 +185,7 @@
</font> #endif
 }
 
<font color='#880000'>-extern void bsp_fake_syscall(void);
</font><font color='#000088'>+extern void bsp_fake_syscall(int);
</font> 
 /*
  * The Arcturus boot ROM prints exception information improperly
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>Abandon gcc-4.4.2.
newlib-1.18.0-rtems4.10-20100426.diff.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/arm/gcc-sources.add.diff?r1=text&tr1=1.58&r2=text&tr2=1.59&diff_format=h">M</a></td><td width='1%'>1.59</td><td width='100%'>contrib/crossrpms/rtems4.10/arm/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/avr/gcc-sources.add.diff?r1=text&tr1=1.60&r2=text&tr2=1.61&diff_format=h">M</a></td><td width='1%'>1.61</td><td width='100%'>contrib/crossrpms/rtems4.10/avr/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/bfin/gcc-sources.add.diff?r1=text&tr1=1.59&r2=text&tr2=1.60&diff_format=h">M</a></td><td width='1%'>1.60</td><td width='100%'>contrib/crossrpms/rtems4.10/bfin/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/h8300/gcc-sources.add.diff?r1=text&tr1=1.60&r2=text&tr2=1.61&diff_format=h">M</a></td><td width='1%'>1.61</td><td width='100%'>contrib/crossrpms/rtems4.10/h8300/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/i386/gcc-sources.add.diff?r1=text&tr1=1.59&r2=text&tr2=1.60&diff_format=h">M</a></td><td width='1%'>1.60</td><td width='100%'>contrib/crossrpms/rtems4.10/i386/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/lm32/gcc-sources.add.diff?r1=text&tr1=1.38&r2=text&tr2=1.39&diff_format=h">M</a></td><td width='1%'>1.39</td><td width='100%'>contrib/crossrpms/rtems4.10/lm32/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/m32c/gcc-sources.add.diff?r1=text&tr1=1.55&r2=text&tr2=1.56&diff_format=h">M</a></td><td width='1%'>1.56</td><td width='100%'>contrib/crossrpms/rtems4.10/m32c/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/m32r/gcc-sources.add.diff?r1=text&tr1=1.55&r2=text&tr2=1.56&diff_format=h">M</a></td><td width='1%'>1.56</td><td width='100%'>contrib/crossrpms/rtems4.10/m32r/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/m68k/gcc-sources.add.diff?r1=text&tr1=1.59&r2=text&tr2=1.60&diff_format=h">M</a></td><td width='1%'>1.60</td><td width='100%'>contrib/crossrpms/rtems4.10/m68k/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/mips/gcc-sources.add.diff?r1=text&tr1=1.61&r2=text&tr2=1.62&diff_format=h">M</a></td><td width='1%'>1.62</td><td width='100%'>contrib/crossrpms/rtems4.10/mips/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/powerpc/gcc-sources.add.diff?r1=text&tr1=1.62&r2=text&tr2=1.63&diff_format=h">M</a></td><td width='1%'>1.63</td><td width='100%'>contrib/crossrpms/rtems4.10/powerpc/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/sh/gcc-sources.add.diff?r1=text&tr1=1.58&r2=text&tr2=1.59&diff_format=h">M</a></td><td width='1%'>1.59</td><td width='100%'>contrib/crossrpms/rtems4.10/sh/gcc-sources.add</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/sparc/gcc-sources.add.diff?r1=text&tr1=1.60&r2=text&tr2=1.61&diff_format=h">M</a></td><td width='1%'>1.61</td><td width='100%'>contrib/crossrpms/rtems4.10/sparc/gcc-sources.add</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/arm/gcc-sources.add:1.58 rtems/contrib/crossrpms/rtems4.10/arm/gcc-sources.add:1.59
--- rtems/contrib/crossrpms/rtems4.10/arm/gcc-sources.add:1.58  Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/arm/gcc-sources.add       Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/avr/gcc-sources.add:1.60 rtems/contrib/crossrpms/rtems4.10/avr/gcc-sources.add:1.61
--- rtems/contrib/crossrpms/rtems4.10/avr/gcc-sources.add:1.60  Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/avr/gcc-sources.add       Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/bfin/gcc-sources.add:1.59 rtems/contrib/crossrpms/rtems4.10/bfin/gcc-sources.add:1.60
--- rtems/contrib/crossrpms/rtems4.10/bfin/gcc-sources.add:1.59 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/bfin/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/h8300/gcc-sources.add:1.60 rtems/contrib/crossrpms/rtems4.10/h8300/gcc-sources.add:1.61
--- rtems/contrib/crossrpms/rtems4.10/h8300/gcc-sources.add:1.60        Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/h8300/gcc-sources.add     Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/i386/gcc-sources.add:1.59 rtems/contrib/crossrpms/rtems4.10/i386/gcc-sources.add:1.60
--- rtems/contrib/crossrpms/rtems4.10/i386/gcc-sources.add:1.59 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/i386/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/lm32/gcc-sources.add:1.38 rtems/contrib/crossrpms/rtems4.10/lm32/gcc-sources.add:1.39
--- rtems/contrib/crossrpms/rtems4.10/lm32/gcc-sources.add:1.38 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/lm32/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/m32c/gcc-sources.add:1.55 rtems/contrib/crossrpms/rtems4.10/m32c/gcc-sources.add:1.56
--- rtems/contrib/crossrpms/rtems4.10/m32c/gcc-sources.add:1.55 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/m32c/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/m32r/gcc-sources.add:1.55 rtems/contrib/crossrpms/rtems4.10/m32r/gcc-sources.add:1.56
--- rtems/contrib/crossrpms/rtems4.10/m32r/gcc-sources.add:1.55 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/m32r/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/m68k/gcc-sources.add:1.59 rtems/contrib/crossrpms/rtems4.10/m68k/gcc-sources.add:1.60
--- rtems/contrib/crossrpms/rtems4.10/m68k/gcc-sources.add:1.59 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/m68k/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/mips/gcc-sources.add:1.61 rtems/contrib/crossrpms/rtems4.10/mips/gcc-sources.add:1.62
--- rtems/contrib/crossrpms/rtems4.10/mips/gcc-sources.add:1.61 Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/mips/gcc-sources.add      Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/powerpc/gcc-sources.add:1.62 rtems/contrib/crossrpms/rtems4.10/powerpc/gcc-sources.add:1.63
--- rtems/contrib/crossrpms/rtems4.10/powerpc/gcc-sources.add:1.62      Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/powerpc/gcc-sources.add   Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/sh/gcc-sources.add:1.58 rtems/contrib/crossrpms/rtems4.10/sh/gcc-sources.add:1.59
--- rtems/contrib/crossrpms/rtems4.10/sh/gcc-sources.add:1.58   Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/sh/gcc-sources.add        Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/sparc/gcc-sources.add:1.60 rtems/contrib/crossrpms/rtems4.10/sparc/gcc-sources.add:1.61
--- rtems/contrib/crossrpms/rtems4.10/sparc/gcc-sources.add:1.60        Wed Apr  7 22:24:28 2010
+++ rtems/contrib/crossrpms/rtems4.10/sparc/gcc-sources.add     Mon Apr 26 12:26:34 2010
</font><font color='#997700'>@@ -2,19 +2,12 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if %build_cxx
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %endif
<font color='#997700'>@@ -41,7 +34,7 @@
</font> %if %build_newlib
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 %endif
</pre>
<p> </p>
<a name='cs3'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>Regenerate.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/arm/rtems-4.10-arm-rtems4.10-gcc.spec.diff?r1=text&tr1=1.70&r2=text&tr2=1.71&diff_format=h">M</a></td><td width='1%'>1.71</td><td width='100%'>contrib/crossrpms/rtems4.10/arm/rtems-4.10-arm-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/avr/rtems-4.10-avr-rtems4.10-gcc.spec.diff?r1=text&tr1=1.76&r2=text&tr2=1.77&diff_format=h">M</a></td><td width='1%'>1.77</td><td width='100%'>contrib/crossrpms/rtems4.10/avr/rtems-4.10-avr-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/bfin/rtems-4.10-bfin-rtems4.10-gcc.spec.diff?r1=text&tr1=1.73&r2=text&tr2=1.74&diff_format=h">M</a></td><td width='1%'>1.74</td><td width='100%'>contrib/crossrpms/rtems4.10/bfin/rtems-4.10-bfin-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/h8300/rtems-4.10-h8300-rtems4.10-gcc.spec.diff?r1=text&tr1=1.75&r2=text&tr2=1.76&diff_format=h">M</a></td><td width='1%'>1.76</td><td width='100%'>contrib/crossrpms/rtems4.10/h8300/rtems-4.10-h8300-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/i386/rtems-4.10-i386-rtems4.10-gcc.spec.diff?r1=text&tr1=1.73&r2=text&tr2=1.74&diff_format=h">M</a></td><td width='1%'>1.74</td><td width='100%'>contrib/crossrpms/rtems4.10/i386/rtems-4.10-i386-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/lm32/rtems-4.10-lm32-rtems4.10-gcc.spec.diff?r1=text&tr1=1.49&r2=text&tr2=1.50&diff_format=h">M</a></td><td width='1%'>1.50</td><td width='100%'>contrib/crossrpms/rtems4.10/lm32/rtems-4.10-lm32-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/m32c/rtems-4.10-m32c-rtems4.10-gcc.spec.diff?r1=text&tr1=1.72&r2=text&tr2=1.73&diff_format=h">M</a></td><td width='1%'>1.73</td><td width='100%'>contrib/crossrpms/rtems4.10/m32c/rtems-4.10-m32c-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/m32r/rtems-4.10-m32r-rtems4.10-gcc.spec.diff?r1=text&tr1=1.71&r2=text&tr2=1.72&diff_format=h">M</a></td><td width='1%'>1.72</td><td width='100%'>contrib/crossrpms/rtems4.10/m32r/rtems-4.10-m32r-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/m68k/rtems-4.10-m68k-rtems4.10-gcc.spec.diff?r1=text&tr1=1.73&r2=text&tr2=1.74&diff_format=h">M</a></td><td width='1%'>1.74</td><td width='100%'>contrib/crossrpms/rtems4.10/m68k/rtems-4.10-m68k-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/mips/rtems-4.10-mips-rtems4.10-gcc.spec.diff?r1=text&tr1=1.75&r2=text&tr2=1.76&diff_format=h">M</a></td><td width='1%'>1.76</td><td width='100%'>contrib/crossrpms/rtems4.10/mips/rtems-4.10-mips-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/powerpc/rtems-4.10-powerpc-rtems4.10-gcc.spec.diff?r1=text&tr1=1.76&r2=text&tr2=1.77&diff_format=h">M</a></td><td width='1%'>1.77</td><td width='100%'>contrib/crossrpms/rtems4.10/powerpc/rtems-4.10-powerpc-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/sh/rtems-4.10-sh-rtems4.10-gcc.spec.diff?r1=text&tr1=1.73&r2=text&tr2=1.74&diff_format=h">M</a></td><td width='1%'>1.74</td><td width='100%'>contrib/crossrpms/rtems4.10/sh/rtems-4.10-sh-rtems4.10-gcc.spec</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/contrib/crossrpms/rtems4.10/sparc/rtems-4.10-sparc-rtems4.10-gcc.spec.diff?r1=text&tr1=1.73&r2=text&tr2=1.74&diff_format=h">M</a></td><td width='1%'>1.74</td><td width='100%'>contrib/crossrpms/rtems4.10/sparc/rtems-4.10-sparc-rtems4.10-gcc.spec</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/arm/rtems-4.10-arm-rtems4.10-gcc.spec:1.70 rtems/contrib/crossrpms/rtems4.10/arm/rtems-4.10-arm-rtems4.10-gcc.spec:1.71
--- rtems/contrib/crossrpms/rtems4.10/arm/rtems-4.10-arm-rtems4.10-gcc.spec:1.70        Mon Apr 26 02:45:51 2010
+++ rtems/contrib/crossrpms/rtems4.10/arm/rtems-4.10-arm-rtems4.10-gcc.spec     Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/avr/rtems-4.10-avr-rtems4.10-gcc.spec:1.76 rtems/contrib/crossrpms/rtems4.10/avr/rtems-4.10-avr-rtems4.10-gcc.spec:1.77
--- rtems/contrib/crossrpms/rtems4.10/avr/rtems-4.10-avr-rtems4.10-gcc.spec:1.76        Mon Apr 26 02:45:52 2010
+++ rtems/contrib/crossrpms/rtems4.10/avr/rtems-4.10-avr-rtems4.10-gcc.spec     Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,15 +257,11 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/bfin/rtems-4.10-bfin-rtems4.10-gcc.spec:1.73 rtems/contrib/crossrpms/rtems4.10/bfin/rtems-4.10-bfin-rtems4.10-gcc.spec:1.74
--- rtems/contrib/crossrpms/rtems4.10/bfin/rtems-4.10-bfin-rtems4.10-gcc.spec:1.73      Mon Apr 26 02:45:52 2010
+++ rtems/contrib/crossrpms/rtems4.10/bfin/rtems-4.10-bfin-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/h8300/rtems-4.10-h8300-rtems4.10-gcc.spec:1.75 rtems/contrib/crossrpms/rtems4.10/h8300/rtems-4.10-h8300-rtems4.10-gcc.spec:1.76
--- rtems/contrib/crossrpms/rtems4.10/h8300/rtems-4.10-h8300-rtems4.10-gcc.spec:1.75    Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/h8300/rtems-4.10-h8300-rtems4.10-gcc.spec Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/i386/rtems-4.10-i386-rtems4.10-gcc.spec:1.73 rtems/contrib/crossrpms/rtems4.10/i386/rtems-4.10-i386-rtems4.10-gcc.spec:1.74
--- rtems/contrib/crossrpms/rtems4.10/i386/rtems-4.10-i386-rtems4.10-gcc.spec:1.73      Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/i386/rtems-4.10-i386-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/lm32/rtems-4.10-lm32-rtems4.10-gcc.spec:1.49 rtems/contrib/crossrpms/rtems4.10/lm32/rtems-4.10-lm32-rtems4.10-gcc.spec:1.50
--- rtems/contrib/crossrpms/rtems4.10/lm32/rtems-4.10-lm32-rtems4.10-gcc.spec:1.49      Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/lm32/rtems-4.10-lm32-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/m32c/rtems-4.10-m32c-rtems4.10-gcc.spec:1.72 rtems/contrib/crossrpms/rtems4.10/m32c/rtems-4.10-m32c-rtems4.10-gcc.spec:1.73
--- rtems/contrib/crossrpms/rtems4.10/m32c/rtems-4.10-m32c-rtems4.10-gcc.spec:1.72      Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/m32c/rtems-4.10-m32c-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,15 +257,11 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/m32r/rtems-4.10-m32r-rtems4.10-gcc.spec:1.71 rtems/contrib/crossrpms/rtems4.10/m32r/rtems-4.10-m32r-rtems4.10-gcc.spec:1.72
--- rtems/contrib/crossrpms/rtems4.10/m32r/rtems-4.10-m32r-rtems4.10-gcc.spec:1.71      Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/m32r/rtems-4.10-m32r-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,15 +257,11 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/m68k/rtems-4.10-m68k-rtems4.10-gcc.spec:1.73 rtems/contrib/crossrpms/rtems4.10/m68k/rtems-4.10-m68k-rtems4.10-gcc.spec:1.74
--- rtems/contrib/crossrpms/rtems4.10/m68k/rtems-4.10-m68k-rtems4.10-gcc.spec:1.73      Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/m68k/rtems-4.10-m68k-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/mips/rtems-4.10-mips-rtems4.10-gcc.spec:1.75 rtems/contrib/crossrpms/rtems4.10/mips/rtems-4.10-mips-rtems4.10-gcc.spec:1.76
--- rtems/contrib/crossrpms/rtems4.10/mips/rtems-4.10-mips-rtems4.10-gcc.spec:1.75      Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/mips/rtems-4.10-mips-rtems4.10-gcc.spec   Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/powerpc/rtems-4.10-powerpc-rtems4.10-gcc.spec:1.76 rtems/contrib/crossrpms/rtems4.10/powerpc/rtems-4.10-powerpc-rtems4.10-gcc.spec:1.77
--- rtems/contrib/crossrpms/rtems4.10/powerpc/rtems-4.10-powerpc-rtems4.10-gcc.spec:1.76        Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/powerpc/rtems-4.10-powerpc-rtems4.10-gcc.spec     Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/sh/rtems-4.10-sh-rtems4.10-gcc.spec:1.73 rtems/contrib/crossrpms/rtems4.10/sh/rtems-4.10-sh-rtems4.10-gcc.spec:1.74
--- rtems/contrib/crossrpms/rtems4.10/sh/rtems-4.10-sh-rtems4.10-gcc.spec:1.73  Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/sh/rtems-4.10-sh-rtems4.10-gcc.spec       Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 

<font color='#006600'>diff -u rtems/contrib/crossrpms/rtems4.10/sparc/rtems-4.10-sparc-rtems4.10-gcc.spec:1.73 rtems/contrib/crossrpms/rtems4.10/sparc/rtems-4.10-sparc-rtems4.10-gcc.spec:1.74
--- rtems/contrib/crossrpms/rtems4.10/sparc/rtems-4.10-sparc-rtems4.10-gcc.spec:1.73    Mon Apr 26 02:45:53 2010
+++ rtems/contrib/crossrpms/rtems4.10/sparc/rtems-4.10-sparc-rtems4.10-gcc.spec Mon Apr 26 12:27:21 2010
</font><font color='#997700'>@@ -257,23 +257,16 @@
</font> Source0:  ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
 Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.3-rtems4.10-20100315.diff
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"
-Source0:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-core-%{gcc_pkgvers}.tar.bz2
-Patch0:                ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/gcc-core-4.4.2-rtems4.10-20091104.diff
-%endif
</font> %{?_without_sources:NoSource:     0}
 
 %if "%{gcc_version}" == "4.4.3"<span style="background-color: #FF0000"> </span>
 Source1:       ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
 %endif
<font color='#880000'>-%if "%{gcc_version}" == "4.4.2"<span style="background-color: #FF0000"> </span>
-Source1:        ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_pkgvers}/gcc-g++-%{gcc_pkgvers}.tar.bz2
-%endif
</font> %{?_without_sources:NoSource:     1}
 
 %if "%{newlib_version}" == "1.18.0"
 Source50:      ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_pkgvers}.tar.gz
<font color='#880000'>-Patch50:   ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100402.diff
</font><font color='#000088'>+Patch50:      ftp://ftp.rtems.org/pub/rtems/SOURCES/4.10/newlib-1.18.0-rtems4.10-20100426.diff
</font> %endif
 %{?_without_sources:NoSource:  50}
 
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>