From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.devel Subject: Re: configure.in support for FreeBSD ia64/sparc64/powerpc Date: Fri, 23 Jan 2009 05:31:40 +0200 Message-ID: <87y6x23dgj.fsf@kobe.laptop> References: <200611032145.kA3Ljj6x078515@kobe.laptop> <87irhv28mx.fsf@stupidchicken.com> <20061106141015.GB3755@kobe.laptop> <18763.42713.941380.795066@a1ihome1.kph.uni-mainz.de> <200812191716.mBJHG0oC016436@mothra.ics.uci.edu> <18763.58258.187720.412172@a1ihome1.kph.uni-mainz.de> <87prjo7xla.fsf@kobe.laptop> <18808.21525.878956.953074@a1i15.kph.uni-mainz.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1232681540 13864 80.91.229.12 (23 Jan 2009 03:32:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Jan 2009 03:32:20 +0000 (UTC) Cc: Chong Yidong , Dan Nicolaescu , emacs-devel@gnu.org To: Ulrich Mueller Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jan 23 04:33:33 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LQCnU-0007G2-F8 for ged-emacs-devel@m.gmane.org; Fri, 23 Jan 2009 04:33:32 +0100 Original-Received: from localhost ([127.0.0.1]:48284 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LQCmC-0002Pj-Pn for ged-emacs-devel@m.gmane.org; Thu, 22 Jan 2009 22:32:12 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LQCm8-0002Oo-SE for emacs-devel@gnu.org; Thu, 22 Jan 2009 22:32:08 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LQCm7-0002Mh-31 for emacs-devel@gnu.org; Thu, 22 Jan 2009 22:32:08 -0500 Original-Received: from [199.232.76.173] (port=48970 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LQCm7-0002MX-0A for emacs-devel@gnu.org; Thu, 22 Jan 2009 22:32:07 -0500 Original-Received: from igloo.linux.gr ([62.1.205.36]:47177) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LQCm6-0002LK-4S for emacs-devel@gnu.org; Thu, 22 Jan 2009 22:32:06 -0500 Original-Received: from kobe.laptop (adsl188-51.kln.forthnet.gr [79.103.1.51]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id n0N3VhWY026133 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 23 Jan 2009 05:31:48 +0200 Original-Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n0N3Vh2Y037989; Fri, 23 Jan 2009 05:31:43 +0200 (EET) (envelope-from keramida@freebsd.org) Original-Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n0N3VeE0037988; Fri, 23 Jan 2009 05:31:40 +0200 (EET) (envelope-from keramida@freebsd.org) In-Reply-To: <18808.21525.878956.953074@a1i15.kph.uni-mainz.de> (Ulrich Mueller's message of "Thu, 22 Jan 2009 12:10:13 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) X-MailScanner-ID: n0N3VhWY026133 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 5, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@freebsd.org X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:108128 Archived-At: On Thu, 22 Jan 2009 12:10:13 +0100, Ulrich Mueller wrote: >>> I've nothing against that. >>> >>> --- emacs-orig/src/alloc.c >>> +++ emacs/src/alloc.c >>> @@ -4573,7 +4573,11 @@ >>> needed on ia64 too. See mach_dep.c, where it also says inline >>> assembler doesn't work with relevant proprietary compilers. */ >>> #ifdef __sparc__ >>> +#if defined (__sparc64__) && defined(__FreeBSD__) >>> + asm ("flushw"); >>> +#else >>> asm ("ta 3"); >>> +#endif >>> #endif >>> >>> /* Save registers that we need to see on the stack. We need to see > >> No objection from me either. Adding __FreeBSD__ seems fine. > > So, another month has passed ... any reason why this patch cannot be > applied? Otherwise, it would be nice if someone could commit it before > pretest starts. It would be nice if this can go in before the pretest. When the pretest is out, I will update the editors/emacs-devel port to use the tarball of the pretest instead of the current old CVS snapshot. If the patch goes into CVS we can finally remove it from the FreeBSD-specific patches :-)