From owner-freebsd-questions@FreeBSD.ORG Tue Mar 8 14:54:36 2011 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 870A3106566C for ; Tue, 8 Mar 2011 14:54:36 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 425158FC1D for ; Tue, 8 Mar 2011 14:54:35 +0000 (UTC) Received: by gyh4 with SMTP id 4so2359893gyh.13 for ; Tue, 08 Mar 2011 06:54:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:reply-to:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=Gx/OZ0Y0jW+iMHXT8iVg+z5L7Lq+aV0vfW2DZLv45oQ=; b=f/J8cXG3L2BXjC9nbYZ+arS5BnmtxCIqjcR3I+eEmOnoAmrrh+/4IfcSPg1luILEmV KmP55AgJslmnithg6ULiXPdvE0JQmzltV34J8+IP0R4f/bYh7fLpBC4xfnfvZNMyd9su IS8lD7bSBQCPwUXrtpEmbc/8kIW5P01YevgrU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=uKwhw8rVSjLGhHq2NLG5RQEV97LuNjcf5kqKkWvfQi/gzQQDoHtW/n/Bx2S9t61SLV 75WUfYJRqwHRJRPssk5P+9Y87eh9CzPB+FLEYFLvgD3DPDaAcAu02kZ5+zMrl9BAKTnR mcubEmnaFhLESB37WcQnTxmSN+ETRZoe9RUms= MIME-Version: 1.0 Received: by 10.236.85.66 with SMTP id t42mr5290812yhe.50.1299596074411; Tue, 08 Mar 2011 06:54:34 -0800 (PST) Received: by 10.236.108.44 with HTTP; Tue, 8 Mar 2011 06:54:34 -0800 (PST) In-Reply-To: <201103071815.28819.lumiwa@gmail.com> References: <201103070601.46465.lumiwa@gmail.com> <201103071815.28819.lumiwa@gmail.com> Date: Tue, 8 Mar 2011 14:54:34 +0000 Message-ID: From: "b. f." To: ajtiM Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@FreeBSD.org Subject: Re: python27 update-py-psyco X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Mar 2011 14:54:36 -0000 On 3/8/11, ajtiM wrote: > On Monday March 7 2011 08:37:46 b. f. wrote: >> On 3/7/11, ajtiM wrote: >> > On Sunday March 6 2011 12:01:47 b. f. wrote: >> > >> > Thank you. I am reading /usr/ports/UPDATING special like now but there >> > are problems. And I have a problem again with /usr/ports/devel/py-psyco >> > I get: >> > c/mergepoints.c:242: error 'JUMP_IF_FALSE' undeclared here >> > *** Error code 1 ... > Thank you very much for reply but I see that is not possible to build it (I > red about psyco on mailing list). > For now everything works but I have more ports to rebuild but psyco is the > big > problem. Well, I'm not sure what list you are referring to here, but you should still be able to build it, if you set PYTHON_VERSION to python2.5 or python2.6 in your build environment, on the command-line, or in any included Makefile (like, for example, /etc/make.conf or $PORTSDIR/devel/py-psyco/Makefile.local). Of course, if you are using psyco with some other software, then you may have to do the same for that software. You can do that conditionally if you are doing it in some common Makefile like /etc/make.conf, and still want to use other software with another version of python. For example: .if${.CURDIR:M*/ports/devel/py-psyco} PYTHON_VERSION=python2.6 .endif b.