bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Guile 1.5.6 build failure on OpenBSD 3.0


From: Dale P. Smith
Subject: Guile 1.5.6 build failure on OpenBSD 3.0
Date: Wed, 10 Apr 2002 11:11:39 -0400

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
address@hidden
440-746-9000 x339



reply via email to

[Prev in Thread] Current Thread [Next in Thread]