Commit 8c8a1a01 8c8a1a0180f5ac71f16ec3ff334948f688c8db32 by Jakob Kaivo

add option for virtual domains

1 parent 4f27cde9
...@@ -138,6 +138,12 @@ if test x"$use_mysql" = x"yes"; then ...@@ -138,6 +138,12 @@ if test x"$use_mysql" = x"yes"; then
138 AC_DEFINE(HAVE_MYSQL)) 138 AC_DEFINE(HAVE_MYSQL))
139 fi 139 fi
140 140
141 dnl Virtual domain support, at least for pop3d
142 AC_ARG_ENABLE(virtual-domains, [ --enable-virtual-domains enable virtual domain support (default no)], [use_virtual_domains="yes"],,)
143 if test x"$use_virtual_domains" = x"yes"; then
144 AC_DEFINE(USE_VIRTUAL_DOMAINS)
145 fi
146
141 dnl Use either PAM or CRYPT, not both. 147 dnl Use either PAM or CRYPT, not both.
142 if test x"$testpam" = x"yes"; then 148 if test x"$testpam" = x"yes"; then
143 AC_CHECK_HEADERS(security/pam_appl.h) 149 AC_CHECK_HEADERS(security/pam_appl.h)
......