change log for rtems (2011-02-24)
rtems-vc at rtems.org
rtems-vc at rtems.org
Fri Feb 25 03:10:25 UTC 2011
*ralf*:
2011-02-25 Ralf Corsépius <ralf.corsepius at rtems.org>
* libcsupport/src/opendir.c, libcsupport/src/closedir.c,
libcsupport/src/readdir.c, libcsupport/src/rewinddir.c,
libcsupport/src/scandir.c, libcsupport/src/seekdir.c,
libcsupport/src/telldir.c: Remove.
* libcsuppport/Makefile.am: Reflect changes above.
* configure.ac: Error out if libc doesn't provide
opendir, closedir, readdir, rewinddir, scandir, seekdir,
telldir.
M 1.2744 cpukit/ChangeLog
M 1.199 cpukit/configure.ac
M 1.134 cpukit/libcsupport/Makefile.am
R 1.9 cpukit/libcsupport/src/closedir.c
R 1.7 cpukit/libcsupport/src/opendir.c
R 1.13 cpukit/libcsupport/src/readdir.c
R 1.11 cpukit/libcsupport/src/rewinddir.c
R 1.17 cpukit/libcsupport/src/scandir.c
R 1.11 cpukit/libcsupport/src/seekdir.c
R 1.13 cpukit/libcsupport/src/telldir.c
diff -u rtems/cpukit/ChangeLog:1.2743 rtems/cpukit/ChangeLog:1.2744
--- rtems/cpukit/ChangeLog:1.2743 Thu Feb 24 09:48:05 2011
+++ rtems/cpukit/ChangeLog Thu Feb 24 20:13:19 2011
@@ -1,3 +1,14 @@
+2011-02-25 Ralf Corsépius <ralf.corsepius at rtems.org>
+
+ * libcsupport/src/opendir.c, libcsupport/src/closedir.c,
+ libcsupport/src/readdir.c, libcsupport/src/rewinddir.c,
+ libcsupport/src/scandir.c, libcsupport/src/seekdir.c,
+ libcsupport/src/telldir.c: Remove.
+ * libcsuppport/Makefile.am: Reflect changes above.
+ * configure.ac: Error out if libc doesn't provide
+ opendir, closedir, readdir, rewinddir, scandir, seekdir,
+ telldir.
+
2011-02-24 Ralf Corsépius <ralf.corsepius at rtems.org>
* libcsupport/include/sys/statvfs.h: Remove include <sys/cdefs.h>
diff -u rtems/cpukit/configure.ac:1.198 rtems/cpukit/configure.ac:1.199
--- rtems/cpukit/configure.ac:1.198 Thu Feb 10 18:31:53 2011
+++ rtems/cpukit/configure.ac Thu Feb 24 20:13:20 2011
@@ -49,8 +49,12 @@
# Check for functions supplied by newlib >= 1.17.0
# Newlib's posix/ directory
AC_CHECK_FUNCS([sleep usleep \
- opendir closedir readdir readdir_r \
- rewinddir scandir seekdir telldir isatty])
+ readdir_r \
+ isatty])
+AC_CHECK_FUNCS([opendir closedir readdir rewinddir scandir seekdir telldir],,
+ [rtems_missing_func="$ac_func";break])
+AS_IF([test -n "$rtems_missing_func"],
+ AC_MSG_ERROR([Missing function $rtems_missing_func in libc])])
AC_CHECK_FUNCS([creat])
AC_CHECK_FUNCS([__assert])
AC_CHECK_FUNCS([execl execlp execle execv execvp execve])
diff -u rtems/cpukit/libcsupport/Makefile.am:1.133 rtems/cpukit/libcsupport/Makefile.am:1.134
--- rtems/cpukit/libcsupport/Makefile.am:1.133 Thu Feb 17 08:17:09 2011
+++ rtems/cpukit/libcsupport/Makefile.am Thu Feb 24 20:13:20 2011
@@ -76,9 +76,6 @@
endif
DIRECTORY_SCAN_C_FILES =
-## 20 Nov 2008: Now using these from newlib's posix directory
-DIRECTORY_SCAN_C_FILES += src/opendir.c src/closedir.c src/readdir.c \
- src/rewinddir.c src/scandir.c src/seekdir.c src/telldir.c
## Newlib SHOULD have provided this one
DIRECTORY_SCAN_C_FILES += src/readdir_r.c
## Comment out when using these from newlib's unix directory
*ralf*:
2011-02-25 Ralf Corsépius <ralf.corsepius at rtems.org>
* libcsupport/src/creat.c: Remove.
* libcsupport/Makefile.am: Reflect changes above.
* configure.ac: Error out if libc doesn't provide creat.
M 1.2745 cpukit/ChangeLog
M 1.200 cpukit/configure.ac
M 1.135 cpukit/libcsupport/Makefile.am
R 1.4 cpukit/libcsupport/src/creat.c
diff -u rtems/cpukit/ChangeLog:1.2744 rtems/cpukit/ChangeLog:1.2745
--- rtems/cpukit/ChangeLog:1.2744 Thu Feb 24 20:13:19 2011
+++ rtems/cpukit/ChangeLog Thu Feb 24 20:51:22 2011
@@ -1,10 +1,16 @@
2011-02-25 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * libcsupport/src/creat.c: Remove.
+ * libcsupport/Makefile.am: Reflect changes above.
+ * configure.ac: Error out if libc doesn't provide creat.
+
+2011-02-25 Ralf Corsépius <ralf.corsepius at rtems.org>
+
* libcsupport/src/opendir.c, libcsupport/src/closedir.c,
libcsupport/src/readdir.c, libcsupport/src/rewinddir.c,
libcsupport/src/scandir.c, libcsupport/src/seekdir.c,
libcsupport/src/telldir.c: Remove.
- * libcsuppport/Makefile.am: Reflect changes above.
+ * libcsupport/Makefile.am: Reflect changes above.
* configure.ac: Error out if libc doesn't provide
opendir, closedir, readdir, rewinddir, scandir, seekdir,
telldir.
diff -u rtems/cpukit/configure.ac:1.199 rtems/cpukit/configure.ac:1.200
--- rtems/cpukit/configure.ac:1.199 Thu Feb 24 20:13:20 2011
+++ rtems/cpukit/configure.ac Thu Feb 24 20:51:22 2011
@@ -51,11 +51,11 @@
AC_CHECK_FUNCS([sleep usleep \
readdir_r \
isatty])
-AC_CHECK_FUNCS([opendir closedir readdir rewinddir scandir seekdir telldir],,
+AC_CHECK_FUNCS([creat \
+ opendir closedir readdir rewinddir scandir seekdir telldir],,
[rtems_missing_func="$ac_func";break])
AS_IF([test -n "$rtems_missing_func"],
AC_MSG_ERROR([Missing function $rtems_missing_func in libc])])
-AC_CHECK_FUNCS([creat])
AC_CHECK_FUNCS([__assert])
AC_CHECK_FUNCS([execl execlp execle execv execvp execve])
AC_CHECK_FUNCS([regcomp regexec regerror regfree])
diff -u rtems/cpukit/libcsupport/Makefile.am:1.134 rtems/cpukit/libcsupport/Makefile.am:1.135
--- rtems/cpukit/libcsupport/Makefile.am:1.134 Thu Feb 24 20:13:20 2011
+++ rtems/cpukit/libcsupport/Makefile.am Thu Feb 24 20:52:54 2011
@@ -66,7 +66,7 @@
src/chdir.c src/chmod.c src/fchdir.c src/fchmod.c src/fchown.c src/chown.c \
src/link.c src/unlink.c src/umask.c src/ftruncate.c src/utime.c src/fstat.c \
src/fcntl.c src/fpathconf.c src/getdents.c src/fsync.c src/fdatasync.c \
- src/pipe.c src/dup.c src/dup2.c src/symlink.c src/readlink.c src/creat.c \
+ src/pipe.c src/dup.c src/dup2.c src/symlink.c src/readlink.c \
src/chroot.c src/sync.c src/_rename_r.c src/statvfs.c src/utimes.c src/lchown.c
## Until sys/uio.h is moved to libcsupport, we have to have networking
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110224/61c5b7c9/attachment-0001.html>
More information about the vc
mailing list