X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=a41cf41a2df174f728786ab52b10a43bc30fcd65;hb=4c2b0e4e423fe73fafef10a5efa6fb778784cebc;hp=0ad2b6aa67f439cab4f92b1c35b134a8a3243fb5;hpb=2c8b32d9f717e8194add876851ab481f740c3712;p=elogind.git diff --git a/configure.ac b/configure.ac index 0ad2b6aa6..a41cf41a2 100644 --- a/configure.ac +++ b/configure.ac @@ -363,6 +363,13 @@ if test "x$enable_coredump" != "xno"; then fi AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"]) +have_manpages=no +AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages])) +if test "x$enable_manpages" != "xno"; then + have_manpages=yes +fi +AM_CONDITIONAL(ENABLE_MANPAGES, [test "$have_manpages" = "yes"]) + have_gtk=no AC_ARG_ENABLE(gtk, AS_HELP_STRING([--disable-gtk], [disable GTK tools])) if test "x$enable_gtk" != "xno"; then @@ -653,4 +660,5 @@ AC_MSG_RESULT([ D-Bus system dir: ${with_dbussystemservicedir} D-Bus interfaces dir: ${with_dbusinterfacedir} Split /usr: ${have_split_usr} + Build man pages: ${have_manpages} ])