Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/aclocal.m4

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.6 by orrisroot, Fri Apr 1 11:01:49 2005 UTC revision 1.7 by orrisroot, Wed Jul 6 10:50:50 2005 UTC
# Line 6839  SED=$lt_cv_path_SED Line 6839  SED=$lt_cv_path_SED
6839  AC_MSG_RESULT([$SED])  AC_MSG_RESULT([$SED])
6840  ])  ])
6841    
6842    # Configure paths for LIBXML2 with 2.6.19 bug check for xoonips AL
6843    # Yoshihiro OKUMURA
6844    
6845    dnl AM_XNI_PATH_XML2([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
6846    dnl Test for XML, and define XML_CPPFLAGS and XML_LIBS
6847    dnl
6848    AC_DEFUN([AM_XNI_PATH_XML2],
6849    [AC_REQUIRE([AM_PATH_XML2])dnl
6850    
6851    AC_ARG_ENABLE([xml-query-bug-version-check],
6852      [AC_HELP_STRING([--disable-xml-query-bug-version-check],
6853         [disable version check of GET query bug for libxml2-2.6.19])],,
6854      [disable_xml_query_bug_version_check="yes"])
6855    
6856    if [ x"$disable_xml_query_bug_version_check" = x"" ]; then
6857      disable_xml_query_bug_version_check="no"
6858    fi
6859    
6860    echo $disable_xml_query_bug_version_check;
6861    AM_PATH_XML2([$1])
6862    
6863    xml_config_major_version=`$XML2_CONFIG $xml_config_args --version | \
6864           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
6865    xml_config_minor_version=`$XML2_CONFIG $xml_config_args --version | \
6866           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
6867    xml_config_micro_version=`$XML2_CONFIG $xml_config_args --version | \
6868           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
6869    
6870    if test "$disable_xml_query_bug_version_check" != "yes"; then
6871      if test $xml_config_major_version -eq 2 && \
6872         test $xml_config_minor_version -eq 6 && \
6873         test $xml_config_micro_version -eq 19 ; then
6874    
6875        echo "*** libxml2-2.6.19 has GET query problem."
6876        echo "*** See following url for more detail information."
6877        echo "*** http://bugzilla.gnome.org/show_bug.cgi?id=1752525"
6878        echo "*** If you have fixed libxml2-2.6.19 library, "
6879        echo "*** try --disable-xml-query-bug-version-check configure option."
6880        AC_MSG_ERROR([libxml2-2.6.19 has GET query problem.])
6881      fi
6882    fi
6883    ])
6884  # Configure paths for LIBXML2  # Configure paths for LIBXML2
6885  # Mike Hommey 2004-06-19  # Mike Hommey 2004-06-19
6886  # use CPPFLAGS instead of CFLAGS  # use CPPFLAGS instead of CFLAGS

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26