add option for virtual domains
Showing
1 changed file
with
6 additions
and
0 deletions
... | @@ -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) | ... | ... |
-
Please register or sign in to post a comment