summaryrefslogtreecommitdiff
path: root/projects/sample/autoconf/m4/single_cxx_check.m4
diff options
context:
space:
mode:
Diffstat (limited to 'projects/sample/autoconf/m4/single_cxx_check.m4')
-rw-r--r--projects/sample/autoconf/m4/single_cxx_check.m410
1 files changed, 0 insertions, 10 deletions
diff --git a/projects/sample/autoconf/m4/single_cxx_check.m4 b/projects/sample/autoconf/m4/single_cxx_check.m4
deleted file mode 100644
index 21efa4bed3..0000000000
--- a/projects/sample/autoconf/m4/single_cxx_check.m4
+++ /dev/null
@@ -1,10 +0,0 @@
-dnl AC_SINGLE_CXX_CHECK(CACHEVAR, FUNCTION, HEADER, PROGRAM)
-dnl $1, $2, $3, $4,
-dnl
-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++])])
- ])
-