aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-cxx-check.m4
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-03-06 00:57:29 +0800
committerDan Winship <danw@src.gnome.org>2002-03-06 00:57:29 +0800
commit60eaaca663551f03031a82cc4a135e5ac668dd90 (patch)
treef85f905e02753177fac47a46b0f015e17d960d1f /macros/gnome-cxx-check.m4
parent33c3f207a59810fa1323454d3afd015bcba1184b (diff)
downloadgsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.tar
gsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.tar.gz
gsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.tar.bz2
gsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.tar.lz
gsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.tar.xz
gsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.tar.zst
gsoc2013-evolution-60eaaca663551f03031a82cc4a135e5ac668dd90.zip
I'm not dead yet!
svn path=/trunk/; revision=15919
Diffstat (limited to 'macros/gnome-cxx-check.m4')
-rw-r--r--macros/gnome-cxx-check.m410
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)
+])