diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2008-04-03 23:25:04 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2008-04-03 23:25:04 +0000 |
commit | 5d74079ecd24f7463c3503b64117488ad875f6c3 (patch) | |
tree | 2882631bc25d64c4e2255b58704cd5f3ae8c1de6 | |
parent | - Fix build on i386 by disabling the assembly (diff) |
- Mark BROKEN on CURRENT since approx. readlink header changes
Reported by: pointyhat
-rw-r--r-- | sysutils/gnomefind/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/gnomefind/Makefile b/sysutils/gnomefind/Makefile index 521703ca4700..f4a0c70f81e3 100644 --- a/sysutils/gnomefind/Makefile +++ b/sysutils/gnomefind/Makefile @@ -23,8 +23,14 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= gnome-find.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 800023 +BROKEN= does not compile +.endif + post-patch: @${GREP} -lR "<regex\.h>" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|<regex\.h>|<gnuregex.h>|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |