From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Dale P. Smith" Newsgroups: gmane.lisp.guile.bugs Subject: Guile 1.5.6 build failure on OpenBSD 3.0 Date: Wed, 10 Apr 2002 11:11:39 -0400 Organization: Altus Technologies Corporation Sender: bug-guile-admin@gnu.org Message-ID: <20020410111139.4ac7edd7.dsmith@altustech.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1018451733 30460 127.0.0.1 (10 Apr 2002 15:15:33 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 10 Apr 2002 15:15:33 +0000 (UTC) Return-path: Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16vJor-0007v3-00 for ; Wed, 10 Apr 2002 17:15:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16vJoR-0001bU-00; Wed, 10 Apr 2002 11:15:07 -0400 Original-Received: from 208-40-56-34.corecomm.net ([208.40.56.34] helo=borg.altus.cc) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16vJnB-0001YH-00 for ; Wed, 10 Apr 2002 11:13:49 -0400 Original-Received: from sparky (firewall-user@cherry7.comerica.com [12.15.7.30]) by borg-eth1.altus.cc (8.10.2/8.10.2) with SMTP id g3AFDi702179 for ; Wed, 10 Apr 2002 11:13:48 -0400 Original-To: bug-guile X-Mailer: Sylpheed version 0.7.2claws2 (GTK+ 1.2.10; i386-debian-linux-gnu) Errors-To: bug-guile-admin@gnu.org X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GUILE, GNU's Ubiquitous Extension Language List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.lisp.guile.bugs:116 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:116 Guile fails to build on OpenBSD 3.0. It appears that the preprocessor #define i386 isn't defined, while __i386__ is. Using __i386__ seems to fix things. Here is a diff: --- gc_os_dep.c.old Wed Apr 10 11:09:36 2002 +++ gc_os_dep.c Wed Apr 10 11:10:07 2002 @@ -254,7 +254,7 @@ # define NEXT # define mach_type_known # endif -# if defined(__OpenBSD__) && defined(i386) +# if defined(__OpenBSD__) && defined(__i386__) # define I386 # define OPENBSD # define mach_type_known -Dale -- Dale P. Smith Treasurer, Cleveland Linux Users Group http://cleveland.lug.net Senior Systems Consultant, Altus Technologies Corporation dsmith@altustech.com 440-746-9000 x339 _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://mail.gnu.org/mailman/listinfo/bug-guile