source: rtems/c/src/librtems++/configure.ac @ dce4a317

4.104.115
Last change on this file since dce4a317 was dce4a317, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/23/09 at 15:27:44

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

  • configure.ac: Check for cstdlib, cstring.
  • Property mode set to 100644
File size: 861 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.64)
6AC_INIT([rtems-c-src-librtems++],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla],[rtems-c-src-librtems++])
7AC_CONFIG_SRCDIR([include/rtems++])
8RTEMS_TOP(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.10])
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_CXX
16
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_CHECK_CXX(RTEMS_BSP)
20## check for g++
21RTEMS_PROG_CXX_FOR_TARGET
22RTEMS_CANONICALIZE_TOOLS
23
24AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
25
26AC_LANG_PUSH(C++)
27AC_CHECK_HEADER([cstring],[],[AC_MSG_ERROR([Required header cstring not found])])
28AC_CHECK_HEADER([cstdlib],[],[AC_MSG_ERROR([Required header cstdlib not found])])
29AC_LANG_POP
30
31RTEMS_PROJECT_ROOT
32RTEMS_AMPOLISH3
33
34# Explicitly list all Makefiles here
35AC_CONFIG_FILES([Makefile])
36AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.