From: Lars Hecking Date: Tue, 30 Aug 2005 21:34:36 +0000 (+0000) Subject: Don't define domain="no" when configured --without-domain. Closes: #2046. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f193f76c9af8eac4f297a38605e081da83db506;p=neomutt Don't define domain="no" when configured --without-domain. Closes: #2046. --- diff --git a/configure.in b/configure.in index ca57a837d..15e558dd2 100644 --- a/configure.in +++ b/configure.in @@ -483,7 +483,9 @@ AC_SUBST(DOTLOCK_PERMISSION) AC_ARG_WITH(domain, AC_HELP_STRING([--with-domain=DOMAIN], [Specify your DNS domain name]), [if test $withval != yes; then + if test $withval != no; then AC_DEFINE_UNQUOTED(DOMAIN,"$withval",[ Define your domain name. ]) + fi fi]) need_socket="no"