Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
88df51f0
...
88df51f00f0ec194e86b8fefe92ef91cfa009009
authored
2002-11-04 17:33:06 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use MU_ENABLE_SUPPORT for virtual-domains.
1 parent
28e65c57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
18 deletions
configure.ac
configure.ac
View file @
88df51f
...
...
@@ -349,24 +349,17 @@ if test x"$use_mysql" = x"yes"; then
AC_DEFINE(HAVE_MYSQL,1,[Define this if you have mysql libraries])])
fi
dnl Virtual domain support, at least for pop3d
AC_ARG_ENABLE([virtual-domains],
AC_HELP_STRING([--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,1,[Enable use of virtual domains])
AC_SUBST(SITE_VIRTUAL_PWDDIR)
AC_ARG_WITH([virtual-pwddir],
AC_HELP_STRING([--with-virtual-pwddir=DIR],
[use DIR instead of $sysconfdir/domain]),
[
case "${withval}" in
/*) SITE_VIRTUAL_PWDDIR="${withval}";;
*) SITE_VIRTUAL_PWDDIR="\$(sysconfdir)/${withval}";;
esac],
[SITE_VIRTUAL_PWDDIR="\$(sysconfdir)/domain"])
fi
dnl Virtual domain support
MU_ENABLE_SUPPORT(virtual-domains)
AC_SUBST(SITE_VIRTUAL_PWDDIR)
AC_ARG_WITH([virtual-pwddir],
AC_HELP_STRING([--with-virtual-pwddir=DIR],
[use DIR instead of $sysconfdir/domain]),[
case "${withval}" in
/*) SITE_VIRTUAL_PWDDIR="${withval}";;
*) SITE_VIRTUAL_PWDDIR="\$(sysconfdir)/${withval}";;
esac],
[SITE_VIRTUAL_PWDDIR="\$(sysconfdir)/domain"])
MU_ENABLE_SUPPORT(imap)
MU_ENABLE_SUPPORT(pop)
...
...
@@ -599,6 +592,7 @@ AC_CONFIG_FILES([Makefile mailutils.spec
readmsg/testsuite/Makefile
comsat/Makefile
mail.local/Makefile
mail.local/testsuite/Makefile
mail.remote/Makefile
mail.remote/testsuite/Makefile
dotlock/Makefile
...
...
Please
register
or
sign in
to post a comment