fixed a bug in configure.ac and bugs in awk sample programs

This commit is contained in:
2014-06-08 14:11:12 +00:00
parent d40eb87b85
commit 4bb71a765e
25 changed files with 202 additions and 127 deletions

View File

@ -578,9 +578,9 @@ AC_ARG_ENABLE([cxx],
)
dnl disable c++ if no c++ compiler was found
[test "${HAVE_CXX}" = "yes" || enable_cxx_is="no"]
test "${HAVE_CXX}" = "yes" || enable_cxx_is="no"
dnl disable c++ if the compiler is too old.
[test "${HAVE_CXX_NAMESPACE_STD}" = "yes" || enable_cxx_is="no"]
test "${ax_cv_cxx_have_std_namespace}" = "yes" || enable_cxx_is="no"
AM_CONDITIONAL(ENABLE_CXX, test "${enable_cxx_is}" = "yes" )