add explicit test for c++ compiler to avoid confusing output

This commit is contained in:
Jean-Francois Dockes 2010-09-08 09:55:08 +02:00
parent e22d1db445
commit 5dc26f1524
2 changed files with 3520 additions and 2192 deletions

5707
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,11 @@ AC_CONFIG_HEADERS([common/autoconfig.h])
AC_PREREQ(2.53)
AC_CONFIG_SRCDIR(index/recollindex.cpp)
AC_PROG_CXX
if test C$CXX = C ; then
AC_MSG_ERROR([C++ compiler needed. Please install one (ie: gnu g++)])
fi
sys=`uname | tr / _`
if test ! -f mk/$sys ; then