mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-22 07:27:19 +01:00
23 lines
764 B
Text
23 lines
764 B
Text
AC_DEFUN([ARABICA_HAS_XML_PARSER],
|
|
[
|
|
if test "$HAVE_LIBXML2-$HAVE_EXPAT-$HAVE_XERCES" = "--"; then
|
|
AC_MSG_ERROR([[Cannot find an XML parser library. Arabica needs one of Expat, LibXML2 or Xerces]])
|
|
fi
|
|
|
|
if test "$HAVE_EXPAT-" != "-"; then
|
|
AC_DEFINE(USE_EXPAT, ,[define to build against Expat])
|
|
PARSER_HEADERS=$EXPAT_CFLAGS
|
|
PARSER_LIBS=$EXPAT_LIBS
|
|
elif test "$HAVE_LIBXML2-" != "-"; then
|
|
AC_DEFINE(USE_LIBXML2, ,[define to build against LibXML2])
|
|
PARSER_HEADERS=$LIBXML2_CFLAGS
|
|
PARSER_LIBS=$LIBXML2_LIBS
|
|
elif test "$HAVE_XERCES-" != "-"; then
|
|
AC_DEFINE(USE_XERCES, ,[define to build against Xerces])
|
|
PARSER_HEADERS=$XERCES_CFLAGS
|
|
PARSER_LIBS=$XERCES_LIBS
|
|
fi
|
|
|
|
AC_SUBST(PARSER_HEADERS)
|
|
AC_SUBST(PARSER_LIBS)
|
|
])
|