Skip to content
Snippets Groups Projects
Commit f2b218bc authored by Niels Möller's avatar Niels Möller
Browse files

Test if the system has any C++ compiler.

Rev: src/nettle/configure.ac:1.77
parent 7a3a9410
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,14 @@ if test "x$CC" = xrntcl ; then
enable_assembler=no
fi
# Used by the testsuite only
AC_PROG_CXX
AC_LANG_PUSH(C++)
AC_TRY_COMPILE([],[return 0;],[CXX_TESTS='cxx-test$(EXEEXT)'], [CXX_TESTS=''])
AC_SUBST([CXX_TESTS])
AC_LANG_POP
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_CHECK_TOOL(NM, nm, strings)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment