diff options
author | Oliver Eikemeier <eik@FreeBSD.org> | 2004-05-28 16:29:48 +0000 |
---|---|---|
committer | Oliver Eikemeier <eik@FreeBSD.org> | 2004-05-28 16:29:48 +0000 |
commit | 589356884aa40f68e3a4e4c93a063a6a4b9e5598 (patch) | |
tree | 48c7ee00934a538770bd56c0253617f1037ee396 /mail/exim | |
parent | - Fix reopening of audio device after pause under certain circumstances (diff) |
work around an Outlook bug, which assumes that after the
after the first semicolon in the Received: header is a
date, even in a comment.
Submitted by: Lanny Godsey <lannygodsey@yahoo.com>
Notes
Notes:
svn path=/head/; revision=110204
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 7e3bffb45527..3981795e497c 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -452,7 +452,7 @@ do-configure: .endif @[ ! -f ${PKGDIR}/pkg-install ] || ${SED} ${SED_SCRIPT} ${PKGDIR}/pkg-install > ${PKGINSTALL} @${REINPLACE_CMD} ${SEDLIST} ${WRKSRC}/src/configure.default - @${REINPLACE_CMD} -e 's/"(Exim $$version_number)\\n\\t"/"(Exim $$version_number; ${OPSYS})\\n\\t"/' \ + @${REINPLACE_CMD} -e 's/"(Exim $$version_number)\\n\\t"/"(Exim $$version_number (${OPSYS}))\\n\\t"/' \ ${WRKSRC}/src/globals.c @${REINPLACE_CMD} -e 's/^#include "cnumber\.h"$$/${PORTREVISION}/' ${WRKSRC}/src/version.c @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} configure) |