<!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 (2011-03-02)</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>2011-03-02 Ralf Corsépius <ralf.corsepius@rtems.org>

        * configure.ac: Remove unused AM_CONDITIONAL([NEED_SYS_CDEFS_H]).
        Remove unused AM_CONDITIONAL([NEED_SYS_QUEUE_H]).
</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.2751&r2=text&tr2=1.2752&diff_format=h">M</a></td><td width='1%'>1.2752</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.201&r2=text&tr2=1.202&diff_format=h">M</a></td><td width='1%'>1.202</td><td width='100%'>cpukit/configure.ac</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2751 rtems/cpukit/ChangeLog:1.2752
--- rtems/cpukit/ChangeLog:1.2751       Mon Feb 28 23:29:26 2011
+++ rtems/cpukit/ChangeLog      Wed Mar  2 01:22:25 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-03-02    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * configure.ac: Remove unused AM_CONDITIONAL([NEED_SYS_CDEFS_H]).
+       Remove unused AM_CONDITIONAL([NEED_SYS_QUEUE_H]).
+
</font> 2011-03-01        Chris Johns <chrisj@rtems.org>
 
        * score/src/heapfree.c, score/src/heapresizeblock.c: PR 1746. Move

<font color='#006600'>diff -u rtems/cpukit/configure.ac:1.201 rtems/cpukit/configure.ac:1.202
--- rtems/cpukit/configure.ac:1.201     Fri Feb 25 04:20:02 2011
+++ rtems/cpukit/configure.ac   Wed Mar  2 01:22:25 2011
</font><font color='#997700'>@@ -272,9 +272,6 @@
</font> # libmisc/serdbg exploits weak symbols
 RTEMS_CHECK_GCC_WEAK
 
<font color='#880000'>-AC_CHECK_HEADERS([sys/cdefs.h],[NEED_SYS_CDEFS_H=no],[NEED_SYS_CDEFS_H=yes])
-AC_CHECK_HEADERS([sys/queue.h],[NEED_SYS_QUEUE_H=no],[NEED_SYS_QUEUE_H=yes])
-
</font> # FIXME: These checks are only in here to provide
 # configuration-time diagnostics and are not really used.
 AC_CHECK_DECLS([_POSIX_LOGIN_NAME_MAX],,,[#include <limits.h>])
<font color='#997700'>@@ -305,9 +302,6 @@
</font> AM_CONDITIONAL(HAS_PTHREADS,test x"$rtems_cv_HAS_POSIX_API" = x"yes")
 AM_CONDITIONAL(LIBNETWORKING,test x"$rtems_cv_HAS_NETWORKING" = x"yes")
 
<font color='#880000'>-AM_CONDITIONAL([NEED_SYS_CDEFS_H],[test x"$NEED_SYS_CDEFS_H" = x"yes"])
-AM_CONDITIONAL([NEED_SYS_QUEUE_H],[test x"$NEED_SYS_QUEUE_H" = x"yes"])
-
</font> AM_CONDITIONAL([LIBSHELL],[test x"$HAVE_ASSIGNABLE_STDIO" = x"yes"])
 AM_CONDITIONAL([LIBSERDBG],[test x"$rtems_cv_cc_attribute_weak" = x"yes"])
 AM_CONDITIONAL([LIBGNAT],[test x"$rtems_cv_HAS_POSIX_API" = x"yes" \
</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>2011-03-02 Ralf Corsépius <ralf.corsepius@rtems.org>

        * configure.ac: Rework checks for mandated headers tar.h,
        errno.h, sched.h, sys/cdefs.h, sys/queue.h.
</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.2752&r2=text&tr2=1.2753&diff_format=h">M</a></td><td width='1%'>1.2753</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.202&r2=text&tr2=1.203&diff_format=h">M</a></td><td width='1%'>1.203</td><td width='100%'>cpukit/configure.ac</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2752 rtems/cpukit/ChangeLog:1.2753
--- rtems/cpukit/ChangeLog:1.2752       Wed Mar  2 01:22:25 2011
+++ rtems/cpukit/ChangeLog      Wed Mar  2 01:24:24 2011
</font><font color='#997700'>@@ -1,5 +1,10 @@
</font> 2011-03-02        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * configure.ac: Rework checks for mandated headers tar.h,
+       errno.h, sched.h, sys/cdefs.h, sys/queue.h.
+
+2011-03-02     Ralf Corsépius <ralf.corsepius@rtems.org>
+
</font>   * configure.ac: Remove unused AM_CONDITIONAL([NEED_SYS_CDEFS_H]).
        Remove unused AM_CONDITIONAL([NEED_SYS_QUEUE_H]).
 

<font color='#006600'>diff -u rtems/cpukit/configure.ac:1.202 rtems/cpukit/configure.ac:1.203
--- rtems/cpukit/configure.ac:1.202     Wed Mar  2 01:22:25 2011
+++ rtems/cpukit/configure.ac   Wed Mar  2 01:24:24 2011
</font><font color='#997700'>@@ -93,8 +93,12 @@
</font> AC_CHECK_FUNCS([ttyname getcwd])
 # </FIXME>
 
<font color='#880000'>-## Check if the installed toolchain has these headers
-AC_CHECK_HEADERS([tar.h errno.h sched.h])
</font><font color='#000088'>+# Check if the installed toolchain provides these headers
+# and error out if not.
+AC_CHECK_HEADERS([tar.h errno.h sched.h sys/cdefs.h sys/queue.h],,
+  [rtems_missing_header="$ac_header";break])
+AS_IF([test -n "$rtems_missing_header"],
+  AC_MSG_ERROR([Missing required header $rtems_missing_header])])
</font> 
 ## error out if libc doesn't provide stdint.h
 AS_IF([test x"${ac_cv_header_stdint_h}" != xyes],
<font color='#997700'>@@ -104,18 +108,6 @@
</font> AS_IF([test x"${ac_cv_header_inttypes_h}" != xyes],
 [AC_MSG_ERROR([Required header inttypes.h not found])])
 
<font color='#880000'>-## error out if libc doesn't provide errno.h
-AS_IF([test x"${ac_cv_header_errno_h}" != xyes],
-[AC_MSG_ERROR([Required header errno.h not found])])
-
-## error out if libc doesn't provide sched.h
-AS_IF([test x"${ac_cv_header_sched_h}" != xyes],
-[AC_MSG_ERROR([Required header sched.h not found])])
-
-## error out if libc doesn't provide tar.h
-AS_IF([test x"${ac_cv_header_tar_h}" != xyes],
-[AC_MSG_ERROR([Required header tar.h not found])])
-
</font> AC_HEADER_STDBOOL
 AS_IF([test x"${ac_cv_header_stdbool_h}" != xyes],
 [AC_MSG_ERROR([No sufficient stdbool.h found])])
</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>