summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-09-19 03:52:31 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-09-19 03:52:31 +0000
commit5f7d9d0ec9cec904ebcd8bdd71cfa103f91e7d4a (patch)
tree61b5b4be6edca382f0258e7c7dd8dddd9a74de76 /cpukit
parentCorrect my email address. (diff)
downloadrtems-5f7d9d0ec9cec904ebcd8bdd71cfa103f91e7d4a.tar.bz2
2005-09-19 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Check for sys/errno.h.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/configure.ac5
2 files changed, 9 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index ef5bf5ae4a..7014c6fdcf 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-19 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * configure.ac: Check for sys/errno.h.
+
2005-09-16 Ralf Corsepius <ralf.corsepius@rtems.org>
* libnetworking/Makefile.am: Cosmetics.
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index 6478b0ff50..e598c5c797 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -81,6 +81,11 @@ AC_CHECK_HEADER([stdint.h])
AC_CHECK_HEADER([inttypes.h])
AC_CHECK_HEADER([tar.h])
+## BSD-ism, should not be used in RTEMS,
+## nevertheless it still is.
+AC_CHECK_HEADER([sys/errno.h],[],
+ [AC_MSG_ERROR([Missing required header sys/errno.h])])
+
## if using newlib, we provide stdint.h and inttypes.h
AM_CONDITIONAL([RTEMS_PROVIDES_STDINT_H],
[test x"${RTEMS_USE_NEWLIB}" = xyes \