Just a normal build: but a strange configure error did occur. <br><br>$$$<br><br>checking whether we are using the GNU C++ compiler... yes<br>checking whether g++ accepts -g... yes<br>checking dependency style of g++... gcc3<br>

configure: error: No C++ compiler not found. Please install a C++ compiler.<br><br>$$$<br><br>I found it's just a ``which`` in <a href="http://configure.in">configure.in</a>.<br><br>QQQ<br><br># check for C++ compiler explicitly and fail if none is found, do this check<br>

# after AC_PROG_CXX has set the CXX environment variable<br>which $CXX >/dev/null 2>&1<br>if test "x$?" != "x0"; then<br>    AC_MSG_ERROR([No C++ compiler not found. Please install a C++ compiler.])<br>

fi<br><br>QQQ<br><br>I didn't know that the ``which`` utility was considered a compiler. :p<br><br>How about just using a shell builtin, ``hash``, ``type -P`` or just ``eval $CXX --version`` as a test instead?<br><br>

------------------------------------------------------------------<br><a href="http://configure.in:18">configure.in:18</a> : which $CXX >/dev/null 2>&1<br><a href="http://configure.in:51">configure.in:51</a> : GIT=`which git 2>/dev/null`<br>

<a href="http://configure.in:60">configure.in:60</a> : SVN=`which svn 2>/dev/null`<br>Found 3 matches for "which".<br clear="all"><br>-- <br>-Erik S<br>