diff options
author | pav <pav@FreeBSD.org> | 2008-12-20 01:47:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-12-20 01:47:03 +0800 |
commit | 324285f23e91998c62b991a42f3250e511e37fb1 (patch) | |
tree | c4aea8e299ce77e3963b5ff97078902d9aa31150 /mail | |
parent | 3d2f2896fd222470b4c7f0654bfdb26691a45577 (diff) | |
download | freebsd-ports-gnome-324285f23e91998c62b991a42f3250e511e37fb1.tar.gz freebsd-ports-gnome-324285f23e91998c62b991a42f3250e511e37fb1.tar.zst freebsd-ports-gnome-324285f23e91998c62b991a42f3250e511e37fb1.zip |
- Mark BROKEN on FreeBSD 6.x: does not compile
Reported by: pointyhat
Diffstat (limited to 'mail')
-rw-r--r-- | mail/libdkim/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/libdkim/Makefile b/mail/libdkim/Makefile index f4743928bb0d..6000ba3812ef 100644 --- a/mail/libdkim/Makefile +++ b/mail/libdkim/Makefile @@ -22,9 +22,15 @@ USE_OPENSSL= YES WRKSRC= ${WRKDIR}/${DISTNAME}/src +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +BROKEN= does not compile on FreeBSD 6.x +.endif + post-patch: ${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.prev @${SED} -e "s=%%SHLIB_MAJOR%%=${SHLIB_MAJOR}=g" \ ${FILESDIR}/Makefile > ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |