<!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-29)</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>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>

        * librpc/src/rpc/pmap_rmt.c: Use uintptr_t for better 16bit
        compliance.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2276&r2=text&tr2=1.2277&diff_format=h">M</a></td><td width='1%'>1.2277</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/src/rpc/pmap_rmt.c.diff?r1=text&tr1=1.12&r2=text&tr2=1.13&diff_format=h">M</a></td><td width='1%'>1.13</td><td width='100%'>cpukit/librpc/src/rpc/pmap_rmt.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2276 rtems/cpukit/ChangeLog:1.2277
--- rtems/cpukit/ChangeLog:1.2276       Thu Apr 29 00:18:41 2010
+++ rtems/cpukit/ChangeLog      Thu Apr 29 02:43:31 2010
</font><font color='#997700'>@@ -1,5 +1,10 @@
</font> 2010-04-29        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * librpc/src/rpc/pmap_rmt.c: Use uintptr_t for better 16bit
+       compliance.
+
+2010-04-29     Ralf Corsépius <ralf.corsepius@rtems.org>
+
</font>   * aclocal/enable-itron.m4: Cosmetics.
        * httpd/Makefile.am: Use LIBHTTPD.
        * shttpd/Makefile.am: Use LIBSHTTPD.

<font color='#006600'>diff -u rtems/cpukit/librpc/src/rpc/pmap_rmt.c:1.12 rtems/cpukit/librpc/src/rpc/pmap_rmt.c:1.13
--- rtems/cpukit/librpc/src/rpc/pmap_rmt.c:1.12 Sat Mar 27 21:35:23 2010
+++ rtems/cpukit/librpc/src/rpc/pmap_rmt.c      Thu Apr 29 02:43:32 2010
</font><font color='#997700'>@@ -281,10 +281,10 @@
</font>   struct rpc_msg msg;
        struct timeval t, tv;
        char outbuf[MAX_BROADCAST_SIZE], inbuf[UDPMSGSIZE];
<font color='#880000'>-   static u_int32_t disrupt;
</font><font color='#000088'>+      static uintptr_t disrupt;
</font> 
        if (disrupt == 0)
<font color='#880000'>-           disrupt = (u_int32_t)(long)resultsp;
</font><font color='#000088'>+              disrupt = (uintptr_t) resultsp;
</font> 
        /*
         * initialization: create a socket, a broadcast address, and
</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>2010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>

        * aclocal/enable-itron.m4, aclocal/check-itron.m4: Replace
        RTEMS_HAS_ITRON_API with enable_itron.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2277&r2=text&tr2=1.2278&diff_format=h">M</a></td><td width='1%'>1.2278</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/aclocal/check-itron.m4.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/aclocal/check-itron.m4</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/aclocal/enable-itron.m4.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/aclocal/enable-itron.m4</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2277 rtems/cpukit/ChangeLog:1.2278
--- rtems/cpukit/ChangeLog:1.2277       Thu Apr 29 02:43:31 2010
+++ rtems/cpukit/ChangeLog      Thu Apr 29 02:45:01 2010
</font><font color='#997700'>@@ -1,5 +1,7 @@
</font> 2010-04-29        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * aclocal/enable-itron.m4, aclocal/check-itron.m4: Replace
+       RTEMS_HAS_ITRON_API with enable_itron.
</font>   * librpc/src/rpc/pmap_rmt.c: Use uintptr_t for better 16bit
        compliance.
 

<font color='#006600'>diff -u rtems/cpukit/aclocal/check-itron.m4:1.6 rtems/cpukit/aclocal/check-itron.m4:1.7
--- rtems/cpukit/aclocal/check-itron.m4:1.6     Fri Nov 17 21:14:37 2006
+++ rtems/cpukit/aclocal/check-itron.m4 Thu Apr 29 02:45:01 2010
</font><font color='#997700'>@@ -7,7 +7,7 @@
</font> AC_CACHE_CHECK([whether CPU supports libitron],
   rtems_cv_HAS_ITRON_API,
   [dnl
<font color='#880000'>-    AS_IF([test "${RTEMS_HAS_ITRON_API}" = "yes"],[
</font><font color='#000088'>+    AS_IF([test "${enable_itron}" = "yes"],[
</font> # suppress itron if one these types is not available
       AS_IF([test x"$ac_cv_type_int8_t" = xyes \
         && test x"$ac_cv_type_uint8_t" = xyes \

<font color='#006600'>diff -u rtems/cpukit/aclocal/enable-itron.m4:1.6 rtems/cpukit/aclocal/enable-itron.m4:1.7
--- rtems/cpukit/aclocal/enable-itron.m4:1.6    Thu Apr 29 00:18:41 2010
+++ rtems/cpukit/aclocal/enable-itron.m4        Thu Apr 29 02:45:01 2010
</font><font color='#997700'>@@ -5,8 +5,8 @@
</font> AC_ARG_ENABLE([itron],
 AS_HELP_STRING([--enable-itron],[enable itron interface (DEPRECATED)]),
 [case "${enableval}" in<span style="background-color: #FF0000"> </span>
<font color='#880000'>-  yes) RTEMS_HAS_ITRON_API=yes ;;
-  no) RTEMS_HAS_ITRON_API=no ;;
</font><font color='#000088'>+  yes) enable_itron=yes ;;
+  no) enable_itron=no ;;
</font>   *)  AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;;
<font color='#880000'>-esac],[RTEMS_HAS_ITRON_API=no])<span style="background-color: #FF0000"> </span>
</font><font color='#000088'>+esac],[enable_itron=no])<span style="background-color: #FF0000"> </span>
</font> ])
</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>