diff options
author | stas <stas@FreeBSD.org> | 2011-07-12 05:25:37 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2011-07-12 05:25:37 +0800 |
commit | 6d5d7122b624ef1b355711addd478cf5c2022510 (patch) | |
tree | f30229605f0bb4330dd33701a19198da29423bdd | |
parent | 3512c8a85753ef0735f1f501e8db0b41c798bc8f (diff) | |
download | freebsd-ports-gnome-6d5d7122b624ef1b355711addd478cf5c2022510.tar.gz freebsd-ports-gnome-6d5d7122b624ef1b355711addd478cf5c2022510.tar.zst freebsd-ports-gnome-6d5d7122b624ef1b355711addd478cf5c2022510.zip |
- Comment out THREADS option for now, sbcl fails to pass tests with threads
on.
-rw-r--r-- | lang/sbcl/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lang/sbcl/Makefile b/lang/sbcl/Makefile index 223bb9c211d6..1e4f52e7ee28 100644 --- a/lang/sbcl/Makefile +++ b/lang/sbcl/Makefile @@ -36,10 +36,14 @@ CPPFLAGS+= -I. SBCL_HOME= ${PREFIX}/lib/sbcl/ OPTIONS= SBCL "Use installed SBCL binary if available" off \ - THREADS "Enable experimental threading support" off \ PDF "Build PDF documentation" on \ PS "Build PostScript documentation" off +# +# Broken +# +# THREADS "Enable experimental threading support" off + #LICENSE= BSD #LICENSE_FILE= ${WRKSRC}/COPYING MAN1= sbcl.1 @@ -196,9 +200,9 @@ post-patch: -e 's|ld \$$SO_FLAGS|${LD} \$$SO_FLAGS|' \ ${WRKSRC}/tests/foreign.test.sh @${FIND} ${WRKSRC} \( -name '*.orig' -o -name '*.bak' \) -delete -.if defined(WITH_THREADS) - @${CP} ${FILESDIR}/customize-target-features.lisp ${WRKSRC} -.endif +#.if defined(WITH_THREADS) +# @${CP} ${FILESDIR}/customize-target-features.lisp ${WRKSRC} +#.endif @${REINPLACE_CMD} -E -e 's,makeinfo,makeinfo --no-split,g' \ ${WRKSRC}/doc/internals/Makefile |