mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
configure: add AX_CODE_COVERAGE only if using gcc
Fixes #2076 Closes #2125
This commit is contained in:
parent
b5881d1fbd
commit
ebaab4d17d
@ -51,7 +51,6 @@ CURL_CHECK_OPTION_ARES
|
||||
CURL_CHECK_OPTION_RT
|
||||
|
||||
XC_CHECK_PATH_SEPARATOR
|
||||
AX_CODE_COVERAGE
|
||||
|
||||
#
|
||||
# save the configure arguments
|
||||
@ -124,6 +123,13 @@ AC_SUBST(libext)
|
||||
dnl figure out the libcurl version
|
||||
CURLVERSION=`$SED -ne 's/^#define LIBCURL_VERSION "\(.*\)".*/\1/p' ${srcdir}/include/curl/curlver.h`
|
||||
XC_CHECK_PROG_CC
|
||||
|
||||
dnl Check if gcc is being used before adding AX_CODE_COVERAGE
|
||||
AS_IF([ test "$GCC" = "yes" ], [AX_CODE_COVERAGE],
|
||||
# not using GCC so pass a test below - CODE_COVERAGE_ENABLED_TRUE is not zero length
|
||||
CODE_COVERAGE_ENABLED_TRUE='#'
|
||||
)
|
||||
|
||||
XC_AUTOMAKE
|
||||
AC_MSG_CHECKING([curl version])
|
||||
AC_MSG_RESULT($CURLVERSION)
|
||||
|
Loading…
Reference in New Issue
Block a user