forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[autoconf] Fix m4 quoting for newer autotools
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 <[email protected]> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173878 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
4 changed files
with
191 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
dnl | ||
dnl AC_SINGLE_CXX_CHECK(CACHEVAR, FUNCTION, HEADER, PROGRAM) | ||
dnl $1, $2, $3, $4, | ||
dnl | ||
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++])]) | ||
]) | ||
[ | ||
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++]) | ||
]) | ||
]) | ||
|
Oops, something went wrong.