Files
evolution/macros/gnome-cxx-check.m4
Dan Winship a0281d1b18 Fix "cvs rm -rf" lossage.
svn path=/trunk/; revision=4480
2000-08-02 22:26:45 +00:00

11 lines
320 B
Plaintext

dnl GNOME_CHECK_CXX(not_found_string)
AC_DEFUN(GNOME_CHECK_CXX,
[
# see if a C++ compiler exists and works
AC_REQUIRE([AC_PROG_CXX])dnl
if test "x$ac_cv_prog_cxx_works" = xno; then
AC_MSG_WARN(ifelse([$1], , "No C++ compiler", [$1]))
fi
AM_CONDITIONAL(CXX_PRESENT, test "x$ac_cv_prog_cxx_works" != xno)
])