From c5206dd8c204eedc2273516c529e8a20b703e96b Mon Sep 17 00:00:00 2001 From: Juan Francisco Cantero Hurtado Date: Thu, 18 Apr 2013 12:10:21 +0200 Subject: [PATCH] Add MZ_TRY_EXTFLONUMS to OpenBSD. Also add an error to unsupported platforms (copied from FreeBSD). Merge to 5.3.4 (cherry picked from commit ac42864f3bf316ead1672bec1fc953b1169bd193) --- src/racket/sconfig.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/racket/sconfig.h b/src/racket/sconfig.h index 4dc2053232..68c3c11901 100644 --- a/src/racket/sconfig.h +++ b/src/racket/sconfig.h @@ -330,9 +330,13 @@ #if defined(__x86_64__) # define MZ_USE_JIT_X86_64 # define MZ_JIT_USE_MPROTECT -#else +# define MZ_TRY_EXTFLONUMS +#elif defined(__i386__) # define MZ_USE_JIT_I386 # define MZ_JIT_USE_MPROTECT +# define MZ_TRY_EXTFLONUMS +#else +# error Unported platform. #endif # define FLAGS_ALREADY_SET