From owner-cvs-all@FreeBSD.ORG Thu Feb 26 07:06:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 700AC16A4D1 for ; Thu, 26 Feb 2004 07:06:58 -0800 (PST) Received: from mailhub1.midco.net (mailhub1.midco.net [24.220.0.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id D415343D3F for ; Thu, 26 Feb 2004 07:06:57 -0800 (PST) (envelope-from pmes@bis.midco.net) Received: (qmail 16448 invoked by uid 0); 26 Feb 2004 15:06:57 -0000 Received: from host-195-219-220-24.midco.net (HELO bis.midco.net) ([24.220.219.195]) (envelope-sender ) by lvs-pop.midco.net (qmail-ldap-1.03) with SMTP for ; 26 Feb 2004 15:06:57 -0000 Message-ID: <403E0B90.9040106@bis.midco.net> Date: Thu, 26 Feb 2004 09:06:56 -0600 From: Peter Schultz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040224 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway References: <200402251000.i1PA0nGn056196@repoman.freebsd.org> In-Reply-To: <200402251000.i1PA0nGn056196@repoman.freebsd.org> Content-Type: multipart/mixed; boundary="------------000307090603020104070905" cc: jkoshy@freebsd.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xaos Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Feb 2004 15:06:58 -0000 This is a multi-part message in MIME format. --------------000307090603020104070905 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Kris Kennaway wrote: > kris 2004/02/25 02:00:49 PST > > FreeBSD ports repository > > Modified files: > graphics/xaos Makefile > Log: > BROKEN on 5.x !i386 and !amd64: Does not compile > > Revision Changes Path > 1.20 +7 -1 ports/graphics/xaos/Makefile > Well, I don't have a patch for the broken build, but I do have one to enable thread support. I'm not sure if the Makefile is as complete as it should be with my patch, but it does work. I could definitely tell there was a performance increase by enabling multi-threading. Xaos rocks! Mmmmmm, eye candy. Pete... --------------000307090603020104070905 Content-Type: text/plain; name="xaos.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xaos.patch" *** /usr/ports/graphics/xaos/Makefile Thu Feb 26 08:44:54 2004 --- Makefile Thu Feb 26 08:44:20 2004 *************** *** 30,35 **** --- 30,39 ---- CONFIGURE_ARGS= --with-svga-driver=no .endif + .if defined(WITH_THREADS) + CONFIGURE_ARGS+= --with-pthread=yes + .endif + CFLAGS= -DHAVE_SYS_PARAM_H \ -I${PREFIX}/include \ -pipe -O6 -fstrength-reduce -ffast-math -fomit-frame-pointer\ --------------000307090603020104070905--