expat is still the default parser, but libxml2 can also be used via an option to the configure script. New parsers can easily be added by implementing a parser_foo.c that uses the interface defined in parser.h.
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
AC_INIT([libstrophe], [trunk], [jack@metajack.im])
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_RANLIB
|
|
|
|
PKG_CHECK_MODULES([check], [check >= 0.9.4])
|
|
|
|
AC_ARG_WITH([libxml2],
|
|
[AS_HELP_STRING([--with-libxml2], [use libxml2 for XML parsing])],
|
|
[with_libxml2=check],
|
|
[with_libxml2=no])
|
|
|
|
if test "x$with_libxml2" != xno; then
|
|
PKG_CHECK_MODULES([libxml2], [libxml-2.0 >= 2.7],
|
|
[with_libxml2=yes],
|
|
[AC_MSG_ERROR([couldn't find libxml2])])
|
|
else
|
|
AC_CHECK_FUNCS(memmove)
|
|
AC_C_BIGENDIAN([byteorder=1234], [byteorder=4321], [], [])
|
|
fi
|
|
|
|
if test "x$with_libxml2" = xyes; then
|
|
with_parser=libxml2
|
|
PARSER_NAME=libxml2
|
|
PARSER_CFLAGS=\$\(libxml2_CFLAGS\)
|
|
PARSER_LIBS=\$\(libxml2_LIBS\)
|
|
else
|
|
with_parser=builtin
|
|
PARSER_NAME=expat
|
|
PARSER_CFLAGS=\$\(builtin_CFLAGS\)
|
|
PARSER_LIBS=\$\(builtin_LIBS\)
|
|
fi
|
|
|
|
AC_MSG_NOTICE([libstrophe will use the $with_parser XML parser])
|
|
|
|
AM_CONDITIONAL([BUILD_EXPAT], [test x$with_parser = xbuiltin])
|
|
AM_CONDITIONAL([PARSER_EXPAT], [test x$with_parser != xlibxml2])
|
|
AC_DEFINE_UNQUOTED([BYTEORDER], [$byteorder])
|
|
AC_SUBST(PARSER_NAME)
|
|
AC_SUBST(PARSER_CFLAGS)
|
|
AC_SUBST(PARSER_LIBS)
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT |