From owner-freebsd-ports@FreeBSD.ORG Fri Feb 4 16:32:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AC9D16A50D for ; Fri, 4 Feb 2005 16:32:23 +0000 (GMT) Received: from goofy.cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with SMTP id 1640143D46 for ; Fri, 4 Feb 2005 16:32:22 +0000 (GMT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 17499 invoked by uid 1000); 4 Feb 2005 17:32:20 +0100 Date: Fri, 4 Feb 2005 17:32:20 +0100 From: Clement Laforet To: Huynh Van Chung Message-ID: <20050204163220.GC64745@goofy.cultdeadsheep.org> References: <20050202180040.4b37e241.hvcjapan@yahoo.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050202180040.4b37e241.hvcjapan@yahoo.co.jp> User-Agent: Mutt/1.5.6i cc: freebsd-sparc64@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: httpd-worker on sparc64? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Feb 2005 16:32:23 -0000 On Wed, Feb 02, 2005 at 06:00:40PM +0900, Huynh Van Chung wrote: Hi! > Can httpd-worker work fine on sparc64? > > In my sparc64 box ( Ultra10, FBSD5.3R-p5), i try to get it work but it don't work correctly. AFAIK, default threading library on sparc64 is libc_r. threaded MPM don't work well with libc_r. You can try to force apache/apr to use KSE (I dunno if it still works). try: make WITH_PTHREAD_LIBS=kse WITH_MPM=worker Of course, it surely leads to instability (I don't really how (un)stable is KSE on sparc64) clem