diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-03-19 21:48:01 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-03-19 21:48:01 +0000 |
commit | 5fe4e095a84bc825a45e67e6ea5634ab7d02c372 (patch) | |
tree | 6564b37f68e6cc36957445c157a6988c324ec74b /x11-wm | |
parent | Fix SSL support. (diff) |
- Does not compile on 4.X
Reported by: krismail
Notes
Notes:
svn path=/head/; revision=157684
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/jwm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-wm/jwm/Makefile b/x11-wm/jwm/Makefile index 3049fcab7700..ee9c8ce756bb 100644 --- a/x11-wm/jwm/Makefile +++ b/x11-wm/jwm/Makefile @@ -26,6 +26,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ MAN1= jwm.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= Does not compile +.endif + post-patch: @${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/example.jwmrc @@ -38,4 +44,4 @@ do-install: fi ${INSTALL_MAN} ${WRKSRC}/jwm.1 ${MANPREFIX}/man/man1/ -.include <bsd.port.mk> +.include <bsd.port.post.mk> |