source: rtems/c/src/aclocal/check-cxx.m4 @ 7c3b0df1

5
Last change on this file since 7c3b0df1 was 65c6425, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:24:46

Remove CVS Id Strings (manual edits after script)

These modifications were required by hand after running the script.
In some cases, the file names did not match patterns. In others,
the format of the file did not match any common patterns.

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