aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-cxx-check.m4
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-08-03 06:26:45 +0800
committerDan Winship <danw@src.gnome.org>2000-08-03 06:26:45 +0800
commita0281d1b1860f650ba2293e422cbc9ec7ee2012b (patch)
treebbeff35e0957b12fd53be52f87c7ddc1c7377108 /macros/gnome-cxx-check.m4
parent83cbc862e6981bd06b406a0ae01e50d15a3502e7 (diff)
downloadgsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar
gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.gz
gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.bz2
gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.lz
gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.xz
gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.zst
gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.zip
Fix "cvs rm -rf" lossage.
svn path=/trunk/; revision=4480
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..786138c5d9
--- /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)
+])