mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
15 lines
303 B
Plaintext
15 lines
303 B
Plaintext
AC_DEFUN([AX_COMPILER_IS_CLANG],[
|
|
AC_CACHE_CHECK([compiler is clang], [ac_cv_compiler_is_clang], [
|
|
if $CXX --version | grep -q -i clang ; then
|
|
ac_cv_compiler_is_clang=yes
|
|
USE_CLANG=yes
|
|
else
|
|
ac_cv_compiler_is_clang=no
|
|
fi
|
|
])
|
|
])
|
|
|
|
AX_COMPILER_IS_CLANG
|
|
|
|
AC_SUBST(USE_CLANG)
|