2009-11-23 Ralf Corsépius <ralf.corsepius@rtems.org>

* configure.ac: Check for cstdlib, cstring.
This commit is contained in:
Ralf Corsepius
2009-11-23 15:27:44 +00:00
parent b288588646
commit dce4a3177c
2 changed files with 10 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-11-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Check for cstdlib, cstring.
2009-08-06 Chris Johns <chrisj@rtems.org>
* src/rtemsInterrupt.cc: Fixed the code to compile on targets with

View File

@@ -2,7 +2,7 @@
##
## $Id$
AC_PREREQ(2.60)
AC_PREREQ(2.64)
AC_INIT([rtems-c-src-librtems++],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla],[rtems-c-src-librtems++])
AC_CONFIG_SRCDIR([include/rtems++])
RTEMS_TOP(../../..)
@@ -23,6 +23,11 @@ RTEMS_CANONICALIZE_TOOLS
AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
AC_LANG_PUSH(C++)
AC_CHECK_HEADER([cstring],[],[AC_MSG_ERROR([Required header cstring not found])])
AC_CHECK_HEADER([cstdlib],[],[AC_MSG_ERROR([Required header cstdlib not found])])
AC_LANG_POP
RTEMS_PROJECT_ROOT
RTEMS_AMPOLISH3