diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2011-08-02 01:09:13 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-08-02 01:38:43 +0200 |
commit | b2e9fb99ab288e8817302851743ed1a3cddd384b (patch) | |
tree | 4259bb63f24130688551b07533a5055540157473 /configure.ac | |
parent | de3910a324aefcb15c26be27033d6917494e5946 (diff) |
build-sys: Add --disable-hostnamed configure switch
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 74fb061f35..6b33018855 100644 --- a/configure.ac +++ b/configure.ac @@ -300,6 +300,13 @@ if test "x$enable_binfmt" != "xno"; then fi AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"]) +have_hostnamed=no +AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon])) +if test "x$enable_hostnamed" != "xno"; then + have_hostnamed=yes +fi +AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"]) + have_gtk=no AC_ARG_ENABLE(gtk, AS_HELP_STRING([--disable-gtk], [disable GTK tools])) if test "x$enable_gtk" != "xno"; then @@ -561,6 +568,7 @@ AC_MSG_RESULT([ SELinux: ${have_selinux} ACL: ${have_acl} binfmt: ${have_binfmt} + hostnamed: ${have_hostnamed} plymouth: ${have_plymouth} prefix: ${prefix} root dir: ${with_rootdir} |