From owner-freebsd-ports@FreeBSD.ORG Thu Sep 11 12:44:36 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0C981065673 for ; Thu, 11 Sep 2008 12:44:36 +0000 (UTC) (envelope-from 1wkmmr@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id 95B548FC12 for ; Thu, 11 Sep 2008 12:44:36 +0000 (UTC) (envelope-from 1wkmmr@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so111157ywe.13 for ; Thu, 11 Sep 2008 05:44:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=bVbgCaMlKo9tlQMits52pHU3n0tdP6wGt8/WM4oUUJQ=; b=eOLXi5PT0tTz53+VYDOb9LXumlzpRotZoRoxCBBe1Tr3tXz7sgsUS79+Y8QlhjIi7b q5LcTmYFvF7T/Qw4tRfR+wPu9VCpElwlYiDOqJOPkuoupvyhEgPx3UC6GKHLODZXHWbc oSmzu6KHR8cuHxkjc9kKj+vPlazaZNxJsMvPc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=t9ukExvYG2ODF0dq1mMqYlYGDx9Lf7oyWuN6fkAexTKnKwdIcH14DvYUDbmhFL88fc KO9DhrJ14do3XzCG9iDkXbQDLKw8KCNW8LjY1rZh8TC5XohD+2Wau43jwCpyLT/Ai2aW +WXN8uFZpJCVD3BWDR/f1M3Q2swm3HuXCKlXM= Received: by 10.100.33.11 with SMTP id g11mr3224381ang.110.1221135227695; Thu, 11 Sep 2008 05:13:47 -0700 (PDT) Received: by 10.100.6.4 with HTTP; Thu, 11 Sep 2008 05:13:47 -0700 (PDT) Message-ID: <3518979e0809110513o20b74caeq20515b12724af88c@mail.gmail.com> Date: Thu, 11 Sep 2008 21:13:47 +0900 From: 1wkmmr@gmail.com To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: lang gcl is not broken now X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Sep 2008 12:44:37 -0000 Hi, Although lang/gcl has been marked broken for a long time, the port is now working well. It can actually operate math/maxima without errors in its self-checking, at least on PRELEASE-7.1/i386. Please find this situation and delete the BROKEN variable in its Makefile. $FreeBSD: ports/lang/gcl/Makefile,v 1.43 2008/04/19 17:51:28 miwi Exp $ The following lines were usefull in early days of releng7 .if ${OSVERSION} >= 700042 BROKEN= Gcl compiled with gcc42 dumps core .endif but it looks too restrictive for now. So, I'd like to recommend the following altanative. .if ${OSVERSION} >= 700042 && ${OSVERSION} < 700108 BROKEN= Gcl compiled with gcc42 dumps core .endif or these kind of condition can be deleted completely. Than you --- Mamoru Iwaki Niigata University, Japan