From 68610d3d2830fe1e78e49ad4c59030fcd379b419 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Fri, 18 Jan 2013 19:33:02 +0000 Subject: [PATCH] fix c++ check on some platforms. i guess it was automake change (1.11 x 1.13) SVN revision: 82996 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 62a5346c1f..0050d9f73d 100644 --- a/configure.ac +++ b/configure.ac @@ -223,7 +223,7 @@ AM_PROG_CC_C_O if test "x${ac_cv_prog_cc_c99}" = "xno" ; then AC_MSG_ERROR([efl requires a c99-capable compiler]) fi -if test "x${ac_cv_prog_ac_ct_CXX}" = "x" ; then +if test "x${ac_cv_prog_ac_ct_CXX:-${ac_cv_prog_CXX}}" = "x" ; then AC_MSG_ERROR([efl requires a C++ compiler]) fi