From: Jordan Lee Date: Tue, 15 Apr 2014 21:23:32 +0000 (+0000) Subject: (trunk) #5612 'transmission incorrectly determines CXX when ccache is used' -- fixed... X-Git-Tag: 2.83~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34870bb938b160d758eae9fa47962f1c9266591b;p=transmission (trunk) #5612 'transmission incorrectly determines CXX when ccache is used' -- fixed with patch from patrickdepinguin --- diff --git a/configure.ac b/configure.ac index 4a384f9b1..27949fb6c 100644 --- a/configure.ac +++ b/configure.ac @@ -69,15 +69,6 @@ AC_SUBST(LIBAPPINDICATOR_MINIMUM) AC_PROG_CC AC_PROG_CXX -if test "x$CXX" != "x"; then # CXX is set... - if test -f "$CXX"; then # maybe it's an absolute path passed in env variables... - AC_MSG_CHECKING([for $CXX]) - HAVE_CXX="yes" - AC_MSG_RESULT([$HAVE_CXX]) - else - AC_CHECK_PROG([HAVE_CXX],[$CXX],[yes],[no]) - fi -fi AC_C_INLINE if test "x$GCC" = "xyes" ; then @@ -216,7 +207,7 @@ AC_CHECK_LIB([rt], AC_MSG_CHECKING([µTP]) build_utp="no" -if test "x$HAVE_CXX" = "xyes" ; then +if test "x$CXX" != "x" ; then have_utp="yes" else have_utp="no"