From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sascha Wilde Newsgroups: gmane.emacs.devel Subject: Building Emacs on SGI mips/netbsd Date: Wed, 17 Jun 2009 14:33:55 +0200 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1245242747 5161 80.91.229.12 (17 Jun 2009 12:45:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 17 Jun 2009 12:45:47 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 17 14:45:43 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 1MGuWM-0002ny-0Z for ged-emacs-devel@m.gmane.org; Wed, 17 Jun 2009 14:45:42 +0200 Original-Received: from localhost ([127.0.0.1]:46523 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MGuWL-0005Qk-Dy for ged-emacs-devel@m.gmane.org; Wed, 17 Jun 2009 08:45:41 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MGuLF-0007bs-By for emacs-devel@gnu.org; Wed, 17 Jun 2009 08:34:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MGuL8-0007aw-UU for emacs-devel@gnu.org; Wed, 17 Jun 2009 08:34:09 -0400 Original-Received: from [199.232.76.173] (port=52638 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MGuL5-0007aX-J2 for emacs-devel@gnu.org; Wed, 17 Jun 2009 08:34:03 -0400 Original-Received: from mail2.sha-bang.de ([78.47.120.114]:2190 helo=mail.sha-bang.de) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MGuL4-0002XS-Mz for emacs-devel@gnu.org; Wed, 17 Jun 2009 08:34:03 -0400 Original-Received: from kenny.sha-bang.local (xdslx079.osnanet.de [82.149.181.79]) by mail.sha-bang.de (Postfix) with ESMTP id EAA04553 for ; Wed, 17 Jun 2009 14:33:55 +0200 (CEST) Original-Received: from wilde by kenny.sha-bang.local with local (Sha Bang MUA v.0711184.68) ID 1MGuKx-0000nW-9c for emacs-devel@gnu.org; Wed, 17 Jun 2009 14:33:55 +0200 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:111551 Archived-At: Hi *, I just build the current 23 head on an old SGI Indy (mips r4400) running NetBSD 5.0: To make it configure and build I had to fiddle with configure as it currently does not handle NetBSD on mips and so the machine does not get configured. I suggest a patch along the lines of: --8<---------------cut here---------------start------------->8--- --- a/configure.in Mon Jun 15 14:21:29 2009 +0200 +++ b/configure.in Wed Jun 17 14:24:12 2009 +0200 @@ -336,6 +336,10 @@ x86_64-*-netbsd*) machine=amdx86-64 ;; hppa-*-netbsd*) machine=hp800 ;; m68k-*-netbsd*) machine=m68k ;; + mips-*-netbsd* | mipseb-*-netbsd* \ + | mips64-*-netbsd* | mips64eb-*-netbsd* ) + machine=mips ;; + esac ;; --8<---------------cut here---------------end--------------->8--- This is untested, as I actually manipulates the generated configure script, and I'm not sure which exact targets are possible with netbsd (IIRC it issued mipseb in my case, can't verify it at the moment). Anyway, after hot-fixing configure it build and ran like a charm, so I think once this is fixed we could add it to etc/MACHINES. cheers sascha -- Sascha Wilde "There is no reason why anyone would want a computer in their home" Ken Olson, DEC, 1977