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

4.115
Last change on this file since fd57015 was bb2b825, checked in by Ralf Corsépius <ralf.corsepius@…>, on 07/19/12 at 13:47:55

Require automake-1.12.2.

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