relax that test.

seems autoconf is stupid and cannot agree on a single variable to
store stuff, if you give ./configure CXX=bla it will change
everything.

Relax the test and just use CXX, if it's set, believe it's usable.



SVN revision: 83008
This commit is contained in:
Gustavo Sverzut Barbieri 2013-01-19 15:46:57 +00:00
parent ee3575e8c8
commit 44732c72d9
1 changed files with 1 additions and 1 deletions

View File

@ -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:-${ac_cv_prog_CXX}}" = "x" ; then
if test "x${CXX}" = "x"; then
AC_MSG_ERROR([efl requires a C++ compiler])
fi