mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
2d109660d7
This simply fixes up quoting of macro invocations to appease newer versions of autotools. http://llvm-reviews.chandlerc.com/D332 Signed-off-by: Saleem Abdulrasool <compnerd@compnerd.org> llvm-svn: 173878
17 lines
392 B
Plaintext
17 lines
392 B
Plaintext
dnl
|
|
dnl AC_SINGLE_CXX_CHECK(CACHEVAR, FUNCTION, HEADER, PROGRAM)
|
|
dnl $1, $2, $3, $4,
|
|
|
|
AC_DEFUN([AC_SINGLE_CXX_CHECK],
|
|
[
|
|
AC_CACHE_CHECK([for $2 in $3], [$1],
|
|
[
|
|
AC_LANG_PUSH([C++])
|
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]][$3], [$4])],
|
|
[$1][[=yes]],
|
|
[$1][[=no]])
|
|
AC_LANG_POP([C++])
|
|
])
|
|
])
|
|
|