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
AC_DEFINE(HAVE_MYSQL))
fi
dnl Virtual domain support, at least for pop3d
AC_ARG_ENABLE(virtual-domains, [ --enable-virtual-domains enable virtual domain support (default no)], [use_virtual_domains="yes"],,)
if test x"$use_virtual_domains" = x"yes"; then
AC_DEFINE(USE_VIRTUAL_DOMAINS)
fi
dnl Use either PAM or CRYPT, not both.
if test x"$testpam" = x"yes"; then
AC_CHECK_HEADERS(security/pam_appl.h)
......