From 9889beb1bfb1c0122d715aa6032b3068ef26f48a Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 10 Sep 2013 16:08:32 +0200 Subject: [PATCH 3/7] configure: add summary https://bugs.freedesktop.org/show_bug.cgi?id=69216 --- configure.ac | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/configure.ac b/configure.ac index 6cff19c..280f071 100644 --- a/configure.ac +++ b/configure.ac @@ -244,6 +244,7 @@ AS_IF([test x$with_backend = xavahi], AC_SUBST(AVAHI_CFLAGS) AC_SUBST(AVAHI_LIBS) AC_SUBST(USE_BACKEND_AVAHI) + backend="Avahi" ]) dnl Check for Bonjour Client Library libdns_sd @@ -254,12 +255,14 @@ AS_IF([test x$with_backend = xbonjour], AC_SUBST(BONJOUR_CFLAGS) AC_SUBST(BONJOUR_LIBS) AC_SUBST(USE_BACKEND_BONJOUR) + backend="Bonjour" ]) AS_IF([test x$with_backend = xno], [ AC_DEFINE(USE_BACKEND_DUMMY, [], [Use dummy backend]) AC_SUBST(USE_BACKEND_DUMMY) + backend="Dummy" ]) dnl Check for libsoup @@ -384,3 +387,27 @@ AC_OUTPUT( Makefile \ salut/telepathy-salut-uninstalled.pc \ salut/telepathy-salut.pc ) + +if test false != "$TEST_PYTHON"; then + tests_enabled=yes +else + tests_enabled=no +fi + +echo " +Configure summary: + + Compiler....................: ${CC} + Compiler Flags..............: ${CFLAGS} ${ERROR_CFLAGS} + Prefix......................: ${prefix} + Backend.....................: ${backend} + Enable debug................: ${enable_debug} + Python tests................: ${tests_enabled} + Avahi tests.................: ${enable_avahi_tests} + Plugins.....................: ${enable_plugins} + +Features: + + OLPC support................: ${enable_olpc} + +" -- 1.8.3.1