|
Revision 1147
(checked in by pvanhoof, 2 years ago)
|
Build environment improvements
|
| Line | |
|---|
| 1 |
AC_DEFUN([AC_TNY_BRKSPOOL_CHECK], |
|---|
| 2 |
[ |
|---|
| 3 |
|
|---|
| 4 |
AC_MSG_CHECKING(for SunOS broken spool format) |
|---|
| 5 |
if test "x$host_os" = "xsunos" ; then |
|---|
| 6 |
with_broken_spool="yes" |
|---|
| 7 |
fi |
|---|
| 8 |
|
|---|
| 9 |
AC_ARG_WITH(broken-spool, |
|---|
| 10 |
[ --with-broken-spool=[yes/no] Using SunOS/Solaris sendmail which has a broken spool format],,with_broken_spool=${with_broken_spool:=no}) |
|---|
| 11 |
|
|---|
| 12 |
if test "x$with_broken_spool" = "xyes"; then |
|---|
| 13 |
AC_DEFINE(HAVE_BROKEN_SPOOL,1,[Define if mail delivered to the system mail directory is in broken Content-Length format]) |
|---|
| 14 |
fi |
|---|
| 15 |
|
|---|
| 16 |
AC_MSG_RESULT($with_broken_spool) |
|---|
| 17 |
|
|---|
| 18 |
]) |
|---|
| 19 |
|
|---|