Implement publish handler in CGI frontend
[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 AC_OUTPUT(Makefile
11         src/Makefile
12         include/Makefile
13         include/atompub/Makefile
14         config/Makefile
15         backend/Makefile
16         backend/files/Makefile
17         backend/gio/Makefile
18         frontend/Makefile
19         frontend/cgi/Makefile
20         atom/Makefile
21         iri/Makefile)