Added a backend per context
[cascardo/atompub.git] / configure.ac
index 607525c..42adda7 100644 (file)
@@ -5,6 +5,7 @@ AC_PROG_CC
 AM_PROG_CC_C_O
 AC_PROG_LIBTOOL
 AM_PATH_GLIB_2_0(2.14.0, , AC_MSG_ERROR(Could not find GLib))
+PKG_CHECK_MODULES(GIO, gio-2.0, , AC_MSG_ERROR(Could not find GIO))
 AC_OUTPUT(Makefile
        src/Makefile
        include/Makefile
@@ -12,5 +13,8 @@ AC_OUTPUT(Makefile
        config/Makefile
        backend/Makefile
        backend/files/Makefile
+       backend/gio/Makefile
+       frontend/Makefile
+       frontend/cgi/Makefile
        atom/Makefile
        iri/Makefile)