Index: src/ost_check2.m4 =================================================================== RCS file: /cvsroot/commoncpp/commoncpp2/src/ost_check2.m4,v retrieving revision 1.1.1.1 diff -r1.1.1.1 ost_check2.m4 109a110,134 > AC_DEFUN(OST_CCXX2_XML, > [ > AC_MSG_CHECKING(for commoncpp2 xml parsing) > AC_LANG_PUSH(C++) > AC_REQUIRE_CPP > AC_TRY_RUN([ > #include > #ifndef COMMON_XML_PARSING > #error "" > #endif > int main() { > return 0; > } > ], ost_cv_ccxx_xml=yes, ost_cv_ccxx_xml=no) > AC_LANG_POP(C++) > if test "x$ost_cv_ccxx_xml" = "xyes" ; then > AC_MSG_RESULT(yes) > AC_DEFINE(HAVE_OST_CCXX2_XML_PARSING) > ifelse([$1], , :, [$1]) > else > AC_MSG_RESULT(no) > ifelse([$2], , :, [$2]) > fi > ]) >