diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3d4b8d4..ab27fba 100644 --- a/configure.ac +++ b/configure.ac @@ -158,6 +158,12 @@ PKG_CHECK_MODULES(POLKIT_GOBJECT, polkit-gobject-1 >= $POLKIT_GOBJECT_REQUIRED) AC_SUBST(POLKIT_GOBJECT_CFLAGS) AC_SUBST(POLKIT_GOBJECT_LIBS) +AC_ARG_ENABLE([accountsservice], + AC_HELP_STRING([--enable-accountsservice], [Enable accountsservice]),, + [enable_accountsservice=yes]) + +AM_CONDITIONAL([HAVE_ACCOUNTSSERVICE], [test "x$enable_accountsservice" = xyes]) + AC_ARG_ENABLE([examples], AC_HELP_STRING([--enable-examples], [Build the example programs]),, [enable_examples=yes]) @@ -233,6 +239,7 @@ echo " cppflags: ${CPPFLAGS} Gtk+ version: ${GTK_API_VERSION} + Accountsservice: ${enable_accountsservice} Maintainer mode: ${USE_MAINTAINER_MODE} Building api docs: ${enable_gtk_doc} GObject Introspection: ${enable_introspection} |