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 [EMAIL PROTECTED] 440-746-9000 x339 _______________________________________________ Bug-guile mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-guile
