diff options
author | Not Zed <NotZed@Ximian.com> | 2001-07-11 15:24:54 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-07-11 15:24:54 +0800 |
commit | 50e64dee0a5c75d4a6a5df1c41bac37165f2f51b (patch) | |
tree | 8c9d3152b52cdcc06caffc593595f8de78262ab5 /configure.in | |
parent | dd7410ad568673b6e33557fb69b84fe4a3695d71 (diff) | |
download | gsoc2013-evolution-50e64dee0a5c75d4a6a5df1c41bac37165f2f51b.tar.gz gsoc2013-evolution-50e64dee0a5c75d4a6a5df1c41bac37165f2f51b.tar.zst gsoc2013-evolution-50e64dee0a5c75d4a6a5df1c41bac37165f2f51b.zip |
Added option --with-broken-spool for solaris mbox spool format.
2001-07-11 Not Zed <NotZed@Ximian.com>
* configure.in: Added option --with-broken-spool for solaris mbox
spool format.
svn path=/trunk/; revision=10988
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3a04d960f5..f41a9c332f 100644 --- a/configure.in +++ b/configure.in @@ -489,7 +489,23 @@ else fi fi +dnl ************************************************** +dnl * sendmail operation +dnl ************************************************** + +AC_MSG_CHECKING(for SunOS broken spool format) +if test "x$host_os" = "xsunos" ; then + with_broken_spool="yes" +fi + +AC_ARG_WITH(broken-spool, +[ --with-broken-spool=[yes/no] Using SunOS/Solaris sendmail which has a broken spool format],,with_broken_spool=${with_broken_spool:=no}) + +if test "x$with_broken_spool" = "xyes"; then + AC_DEFINE(HAVE_BROKEN_SPOOL) +fi +AC_MSG_RESULT($with_broken_spool) dnl *************** dnl GNOME Libraries |