diff options
author | James Henstridge <jamesh@src.gnome.org> | 2001-12-04 13:43:50 +0800 |
---|---|---|
committer | James Henstridge <jamesh@src.gnome.org> | 2001-12-04 13:43:50 +0800 |
commit | ec65c861a6b515529474629a3b04a8a2099e51e4 (patch) | |
tree | cc454fbf703b919d633a10a0a928b1d11fd407ef /macros/gnome-cxx-check.m4 | |
parent | edd7c48be63e486f0c8c424fdc556c57503c4374 (diff) | |
download | gsoc2013-evolution-ec65c861a6b515529474629a3b04a8a2099e51e4.tar.gz gsoc2013-evolution-ec65c861a6b515529474629a3b04a8a2099e51e4.tar.zst gsoc2013-evolution-ec65c861a6b515529474629a3b04a8a2099e51e4.zip |
fix up gfarris's mistaken commit to gnome-common (revert to yesterday's versions)
svn path=/trunk/; revision=14858
Diffstat (limited to 'macros/gnome-cxx-check.m4')
-rw-r--r-- | macros/gnome-cxx-check.m4 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/macros/gnome-cxx-check.m4 b/macros/gnome-cxx-check.m4 new file mode 100644 index 0000000000..3c54d62bca --- /dev/null +++ b/macros/gnome-cxx-check.m4 @@ -0,0 +1,10 @@ +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) +]) |