mirror of
https://github.com/transmission/transmission
synced 2025-02-21 21:57:01 +00:00
(trunk) fix bug #4826 where overriding the C++ compliler via the CXX environment variable didn't work
This commit is contained in:
parent
fd5014aef5
commit
58b4caefba
1 changed files with 7 additions and 1 deletions
|
@ -73,7 +73,13 @@ AC_SUBST(LIBAPPINDICATOR_MINIMUM)
|
|||
|
||||
AC_PROG_CC
|
||||
AC_PROG_CXX
|
||||
AC_CHECK_PROG([HAVE_CXX],[$CXX],[yes],[no])
|
||||
AC_MSG_CHECKING([for $CXX])
|
||||
if test -f "$CXX"; then
|
||||
HAVE_CXX="yes"
|
||||
else
|
||||
HAVE_CXX="no"
|
||||
fi
|
||||
AC_MSG_RESULT([$HAVE_CXX])
|
||||
AC_C_INLINE
|
||||
if test "x$GCC" = "xyes" ; then
|
||||
|
||||
|
|
Loading…
Reference in a new issue