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

        * configure.ac: Add checks for [get|set][e][uid,gid] family of
        functions.
</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.2543&r2=text&tr2=1.2544&diff_format=h">M</a></td><td width='1%'>1.2544</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.189&r2=text&tr2=1.190&diff_format=h">M</a></td><td width='1%'>1.190</td><td width='100%'>cpukit/configure.ac</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2543 rtems/cpukit/ChangeLog:1.2544
--- rtems/cpukit/ChangeLog:1.2543       Mon Aug  2 13:27:22 2010
+++ rtems/cpukit/ChangeLog      Tue Aug  3 00:29:11 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-08-03    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * configure.ac: Add checks for [get|set][e][uid,gid] family of
+       functions.
+
</font> 2010-08-02        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * libfs/src/imfs/imfs_creat.c, libfs/src/imfs/imfs_eval.c,

<font color='#006600'>diff -u rtems/cpukit/configure.ac:1.189 rtems/cpukit/configure.ac:1.190
--- rtems/cpukit/configure.ac:1.189     Tue Jun 29 13:51:49 2010
+++ rtems/cpukit/configure.ac   Tue Aug  3 00:29:16 2010
</font><font color='#997700'>@@ -55,11 +55,22 @@
</font> AC_CHECK_FUNCS([__assert])
 AC_CHECK_FUNCS([execl execlp execle execv execvp execve])
 AC_CHECK_FUNCS([regcomp regexec regerror regfree])
<font color='#880000'>-# Mandated by POSIX but not present in newlib
</font><font color='#000088'>+
+# Mandated by POSIX, decls not present in some versions of newlib
</font> AC_CHECK_DECLS([flockfile],[AC_CHECK_FUNCS([flockfile])],,[#include <stdio.h>])
 AC_CHECK_DECLS([funlockfile],[AC_CHECK_FUNCS([funlockfile])],,[#include <stdio.h>])
 AC_CHECK_DECLS([ftrylockfile],[AC_CHECK_FUNCS([ftrylockfile])],,[#include <stdio.h>])
 
<font color='#000088'>+# Mandated by POSIX, decls not present in some versions of newlib
+AC_CHECK_DECLS([seteuid],[AC_CHECK_FUNCS([seteuid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([setegid],[AC_CHECK_FUNCS([setegid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([setuid],[AC_CHECK_FUNCS([setuid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([setgid],[AC_CHECK_FUNCS([setgid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([geteuid],[AC_CHECK_FUNCS([geteuid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([getegid],[AC_CHECK_FUNCS([getegid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([getuid],[AC_CHECK_FUNCS([getuid])],,[#include <unistd.h>])
+AC_CHECK_DECLS([getgid],[AC_CHECK_FUNCS([getgid])],,[#include <unistd.h>])
+
</font> # Newlib's unix/ directory
 AC_CHECK_FUNCS([ttyname getcwd])
 # </FIXME>
</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>