Change lookup method to find if content is of XML type.
[cascardo/atompub.git] / configure.ac
1 AC_INIT(atompub, 0.1, cascardo@holoscopio.com)
2 AM_INIT_AUTOMAKE
3 AC_PROG_INSTALL
4 AC_PROG_CC
5 AM_PROG_CC_C_O
6 AC_PROG_LIBTOOL
7 PKG_CHECK_MODULES(XML, libxml-2.0, , AC_MSG_ERROR(Could not find libxml2))
8 AM_PATH_GLIB_2_0(2.14.0, , AC_MSG_ERROR(Could not find GLib))
9 PKG_CHECK_MODULES(GIO, gio-2.0, , AC_MSG_ERROR(Could not find GIO))
10 PKG_CHECK_MODULES(SOUP, libsoup-2.4, , AC_MSG_ERROR(Could not find libsoup))
11 AC_OUTPUT(Makefile
12         src/Makefile
13         include/Makefile
14         include/atompub/Makefile
15         config/Makefile
16         config/gkeyfile/Makefile
17         config/ghashtable/Makefile
18         backend/Makefile
19         backend/files/Makefile
20         backend/gio/Makefile
21         backend/soup/Makefile
22         frontend/Makefile
23         frontend/cgi/Makefile
24         atom/Makefile
25         iri/Makefile)