source: rtems/aclocal/check-cxx.m4 @ 59d1127

4.104.114.84.95
Last change on this file since 59d1127 was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 537 bytes
Line 
1dnl $Id$
2dnl
3AC_DEFUN(RTEMS_CHECK_CXX,
4[dnl
5AC_REQUIRE([RTEMS_CHECK_CPU])dnl
6AC_REQUIRE([RTEMS_PROG_CC_FOR_TARGET])dnl
7AC_REQUIRE([RTEMS_PROG_CXX_FOR_TARGET])dnl
8AC_CACHE_CHECK([whether to build rtems++],
9  rtems_cv_HAS_CPLUSPLUS,
10  [ if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
11      if test -n "$CXX_FOR_TARGET"; then
12        rtems_cv_HAS_CPLUSPLUS="yes"
13      else
14        rtems_cv_HAS_CPLUSPLUS="no"
15      fi
16    else
17      rtems_cv_HAS_CPLUSPLUS="no"
18    fi])
19HAS_CPLUSPLUS="$rtems_cv_HAS_CPLUSPLUS";
20AC_SUBST(HAS_CPLUSPLUS)dnl
21])
Note: See TracBrowser for help on using the repository browser.