From owner-freebsd-x11@FreeBSD.ORG Sun Mar 2 18:27:25 2014 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B763BE9; Sun, 2 Mar 2014 18:27:25 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 85E2B1A68; Sun, 2 Mar 2014 18:27:25 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 6FCAA3382; Mon, 3 Mar 2014 02:27:26 +0800 (CST) To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] x11/libxcb: fix USE_PYTHON_BUILD From: Sunpoet Po-Chuan Hsieh X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20140302182726.6FCAA3382@sunpoet.net> Date: Mon, 3 Mar 2014 02:27:26 +0800 (CST) Cc: x11@FreeBSD.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 18:27:25 -0000 >Submitter-Id: current-users >Originator: Sunpoet Po-Chuan Hsieh >Organization: The FreeBSD Project >Confidential: no >Synopsis: [PATCH] x11/libxcb: fix USE_PYTHON_BUILD >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 10.0-STABLE amd64 >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-STABLE FreeBSD 10.0-STABLE #0 r262595: Fri Feb 28 17:51:10 CST >Description: - Fix USE_PYTHON_BUILD: this port does not work with Python 3.x Port maintainer (x11@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.18 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- libxcb-1.9.3.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 346788) +++ Makefile (working copy) @@ -24,7 +24,7 @@ USE_GNOME= libxslt:build USE_LDCONFIG= yes USE_XORG= xau xdmcp -USE_PYTHON_BUILD= yes +USE_PYTHON_BUILD= 2 GNU_CONFIGURE= yes .for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS --- libxcb-1.9.3.patch ends here ---