From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 26 01:20:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69CF91065670 for ; Wed, 26 Oct 2011 01:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 288208FC16 for ; Wed, 26 Oct 2011 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q1K8C3097096 for ; Wed, 26 Oct 2011 01:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q1K73k097095; Wed, 26 Oct 2011 01:20:08 GMT (envelope-from gnats) Resent-Date: Wed, 26 Oct 2011 01:20:08 GMT Resent-Message-Id: <201110260120.p9Q1K73k097095@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nali Toja Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13B171065678 for ; Wed, 26 Oct 2011 01:19:43 +0000 (UTC) (envelope-from nalitoja@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9A6298FC16 for ; Wed, 26 Oct 2011 01:19:42 +0000 (UTC) Received: by faar19 with SMTP id r19so1584338faa.13 for ; Tue, 25 Oct 2011 18:19:41 -0700 (PDT) Received: by 10.223.61.138 with SMTP id t10mr40220484fah.20.1319591981448; Tue, 25 Oct 2011 18:19:41 -0700 (PDT) Received: from nil (exit-01c.noisetor.net. [173.254.216.68]) by mx.google.com with ESMTPS id o16sm868341fag.21.2011.10.25.18.19.38 (version=SSLv3 cipher=OTHER); Tue, 25 Oct 2011 18:19:40 -0700 (PDT) Message-Id: <86vcrch7mt.fsf@gmail.com> Date: Wed, 26 Oct 2011 01:19:22 +0000 From: Nali Toja To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/162017: [patch] lang/sbcl: mark BROKEN on freebsd 9/10 (THREADS option) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 01:20:08 -0000 >Number: 162017 >Category: ports >Synopsis: [patch] lang/sbcl: mark BROKEN on freebsd 9/10 (THREADS option) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 26 01:20:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Nali Toja >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: >Description: sb-thread is going to be broken on the upcoming 9.0-RELEASE. It doesn't work with more than one thread, e.g. with editors/slime by default ;; excerpt from swank-sbcl.lisp (defimplementation preferred-communication-style () (cond ;; fixme: when SBCL/win32 gains better select() support, remove ;; this. ((member :sb-thread *features*) :spawn) ((member :win32 *features*) nil) (t :fd-handler))) cf. http://docs.freebsd.org/cgi/mid.cgi?86mxd7qdzk.fsf (call for help) >How-To-Repeat: >Fix: --- broken.diff begins here --- Index: lang/sbcl/Makefile =================================================================== RCS file: /a/.csup/ports/lang/sbcl/Makefile,v retrieving revision 1.90 diff -u -p -r1.90 Makefile --- lang/sbcl/Makefile 14 Jul 2011 21:35:19 -0000 1.90 +++ lang/sbcl/Makefile 26 Oct 2011 01:01:29 -0000 @@ -88,6 +88,10 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER .include +.if defined(WITH_THREADS) && ${OSVERSION} > 900027 +BROKEN= 'thread was already on queue' crash since libthr@r216641 +.endif + .if !defined(NOPORTDOCS) || !defined(WITHOUT_PDF) || !defined(WITHOUT_PS) BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz .endif --- broken.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: