From 50e64dee0a5c75d4a6a5df1c41bac37165f2f51b Mon Sep 17 00:00:00 2001 From: Not Zed Date: Wed, 11 Jul 2001 07:24:54 +0000 Subject: Added option --with-broken-spool for solaris mbox spool format. 2001-07-11 Not Zed * configure.in: Added option --with-broken-spool for solaris mbox spool format. svn path=/trunk/; revision=10988 --- ChangeLog | 5 +++++ configure.in | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/ChangeLog b/ChangeLog index c2377967a7..385bfb8399 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-07-11 Not Zed + + * configure.in: Added option --with-broken-spool for solaris mbox + spool format. + 2001-07-10 Marius Andreiana * configure.in: Added ro (Romanian) to ALL_LINGUAS 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 -- cgit