7190N/AProvide a way to override mail spool check; unclear if this is the right
7190N/Asolution for upstream. Need to investigate if Solaris mail spool is still
7190N/A"broken".
7190N/A--- evolution-data-server-3.16.2/configure.ac 2015-04-12 23:39:40.000000000 -0700
7190N/A+++ evolution-data-server-3.16.2/configure.ac 2015-07-16 10:57:25.519611383 -0700
7190N/A@@ -1077,10 +1077,14 @@
7190N/A AC_DEFINE_UNQUOTED(SENDMAIL_PATH, "$SENDMAIL", [Path to a sendmail binary, or equivalent])
7190N/A
7190N/A AC_MSG_CHECKING([system mail directory])
7190N/A-if test -d /var/mail -a '!' -h /var/mail ; then
7190N/A- system_mail_dir="/var/mail"
7190N/A+if test -z "$SYSTEM_MAIL_DIR"; then
7190N/A+ if test -d /var/mail -a '!' -h /var/mail ; then
7190N/A+ system_mail_dir="/var/mail"
7190N/A+ else
7190N/A+ system_mail_dir="/var/spool/mail"
7190N/A+ fi
7190N/A else
7190N/A- system_mail_dir="/var/spool/mail"
7190N/A+ system_mail_dir="$SYSTEM_MAIL_DIR"
7190N/A fi
7190N/A AC_DEFINE_UNQUOTED(SYSTEM_MAIL_DIR, "$system_mail_dir", [Directory local mail is delivered to])
7190N/A