diff options
author | trevor <trevor@FreeBSD.org> | 2003-12-04 06:38:33 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-12-04 06:38:33 +0000 |
commit | d237236e110e535871ab81821f7a7a4daaa77578 (patch) | |
tree | 35a203d8a8395e55f14796bee246e08ec936e237 /mail/mailsync | |
parent | 8a4e7bf24a7f20886924eb4e88e38fa6349c3d46 (diff) | |
download | FreeBSD-ports-d237236e110e535871ab81821f7a7a4daaa77578.zip FreeBSD-ports-d237236e110e535871ab81821f7a7a4daaa77578.tar.gz |
The __WORD_BIT constant in GCC's stl_bvector.h caused a namespace
conflict which kept the mailsync port from compiling. Resolve it.
Diffstat (limited to 'mail/mailsync')
-rw-r--r-- | mail/mailsync/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/mail/mailsync/Makefile b/mail/mailsync/Makefile index ce4c8f2..f3d94e7 100644 --- a/mail/mailsync/Makefile +++ b/mail/mailsync/Makefile @@ -27,12 +27,6 @@ ALL_TARGET= default MAN1= mailsync.1 -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile (bad C++ code)" -.endif - post-patch: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ ${WRKSRC}/examples/mailsync \ @@ -48,4 +42,4 @@ do-install: ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/mailsync ${EXAMPLESDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |