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

4.115
Last change on this file since 87b72d48 was 2ddb743, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:52:51

Remove CVS-Ids.

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