<!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-12-03)</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>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-12-03 Joel Sherrill <joel.sherrill@oarcorp.com>

        * configure.ac, posix/src/signal_2.c: sighandler_t is defined
        conditionally in some versions of newlib and unconditionally in
        others. Make sure we always compile.
</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.2661&r2=text&tr2=1.2662&diff_format=h">M</a></td><td width='1%'>1.2662</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/configure.ac.diff?r1=text&tr1=1.195&r2=text&tr2=1.196&diff_format=h">M</a></td><td width='1%'>1.196</td><td width='100%'>cpukit/configure.ac</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/src/signal_2.c.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/posix/src/signal_2.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2661 rtems/cpukit/ChangeLog:1.2662
--- rtems/cpukit/ChangeLog:1.2661       Tue Nov 30 02:15:35 2010
+++ rtems/cpukit/ChangeLog      Fri Dec  3 14:34:24 2010
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+2010-12-03    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * configure.ac, posix/src/signal_2.c: sighandler_t is defined
+       conditionally in some versions of newlib and unconditionally in
+       others. Make sure we always compile.
+
</font> 2010-11-30        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
        * libcsupport/src/newlibc_exit.c, score/src/threadhandler.c: Revert

<font color='#006600'>diff -u rtems/cpukit/configure.ac:1.195 rtems/cpukit/configure.ac:1.196
--- rtems/cpukit/configure.ac:1.195     Fri Oct  8 04:44:44 2010
+++ rtems/cpukit/configure.ac   Fri Dec  3 14:34:24 2010
</font><font color='#997700'>@@ -134,7 +134,11 @@
</font>   AC_CHECK_TYPES([pthread_spinlock_t])
 ])
 
<font color='#880000'>-RTEMS_CHECK_MULTIPROCESSING
</font><font color='#000088'>+AC_CHECK_HEADER([signal.h],[
+  AC_CHECK_TYPES([sighandler_t])
+])
+
+  RTEMS_CHECK_MULTIPROCESSING
</font> RTEMS_CHECK_POSIX_API
 RTEMS_CHECK_NETWORKING
 

<font color='#006600'>diff -u rtems/cpukit/posix/src/signal_2.c:1.4 rtems/cpukit/posix/src/signal_2.c:1.5
--- rtems/cpukit/posix/src/signal_2.c:1.4       Thu Sep  4 13:54:26 2003
+++ rtems/cpukit/posix/src/signal_2.c   Fri Dec  3 14:34:24 2010
</font><font color='#997700'>@@ -18,7 +18,9 @@
</font> #include <signal.h>
 #include <errno.h>
 
<font color='#880000'>-typedef void (*sighandler_t)(int);
</font><font color='#000088'>+#ifndef HAVE_SIGHANDLER_T
+  typedef void (*sighandler_t)(int);
+#endif
</font> 
 sighandler_t signal(
   int           signum,
</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>