diff options
author | pav <pav@FreeBSD.org> | 2011-05-02 07:11:26 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-05-02 07:11:26 +0800 |
commit | 39240f6848c9d49d7f4247fcc57bd39831c36c13 (patch) | |
tree | 5ac52279d0351a65bee191e72ccf6e95632868fb /lang | |
parent | fabb576cfc469317c9f5dae57221457a40d5543b (diff) | |
download | freebsd-ports-gnome-39240f6848c9d49d7f4247fcc57bd39831c36c13.tar.gz freebsd-ports-gnome-39240f6848c9d49d7f4247fcc57bd39831c36c13.tar.zst freebsd-ports-gnome-39240f6848c9d49d7f4247fcc57bd39831c36c13.zip |
- Mark BROKEN on 9-CURRENT: runaway process
113:49.55 ../src/stklos -c -q -b ../src/boot.img -f ../utils/stklos-compile.stk -- --no-time --output=stklos-compile stklos-compile.stk
Reported by: pointyhat
Diffstat (limited to 'lang')
-rw-r--r-- | lang/stklos/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/stklos/Makefile b/lang/stklos/Makefile index 9dbc1224729c..09de334083c9 100644 --- a/lang/stklos/Makefile +++ b/lang/stklos/Makefile @@ -31,6 +31,12 @@ CONFIGURE_ARGS= --enable-threads=posix MAN1= stklos-compile.1 stklos-config.1 stklos-genlex.1 \ stklos-pkg.1 stklos.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 900000 +BROKEN= does not build on FreeBSD 9.x - runaway process +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lgc|-lgc-threaded|' \ -e 's|bdw-gc|bdw-gc-threaded|' \ @@ -47,4 +53,4 @@ post-patch: ${WRKSRC}/doc/Makefile.in .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |