summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index fb6b196..b9185a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,6 +27,16 @@ AC_SUBST(LIBXML2_VERSION)
27# Checks for programs. 27# Checks for programs.
28AC_PROG_CC 28AC_PROG_CC
29AC_PROG_CXX 29AC_PROG_CXX
30
31# AC_PROG_CXX will return "g++" even if no c++ compiler is installed
32AC_LANG_PUSH([C++])
33AC_MSG_CHECKING([whether $CXX is available and compiles a program])
34AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])],
35 [AC_MSG_RESULT([yes])],
36 [AC_MSG_RESULT([no])
37 AC_MSG_ERROR([C++ compiler not available or unable to compile])])
38AC_LANG_POP
39
30AM_PROG_CC_C_O 40AM_PROG_CC_C_O
31AC_PROG_LIBTOOL 41AC_PROG_LIBTOOL
32 42