diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2013-01-12 16:58:37 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2013-01-12 16:58:37 +0000 |
commit | 1735ec5320e833927d288b456b5406caa9cb944f (patch) | |
tree | 956be662afba1dcc3f9484f47b09b17b6a9b69dc /lang/mit-scheme/files/patch-microcode_ux.c | |
parent | automx makes setting up a mail account easy. All your users need to provide (diff) |
Upgrade to version 9.1.1, with amd64 support.
The configure script is not able to detect some functions from
fenv.h, possibly because it does not use "#pragma STDC FENV_ACCESS ON",
which is used in the actual code. If you know of a way to make
configure work without hacking config.h.in, suggestions are welcome.
Diffstat (limited to 'lang/mit-scheme/files/patch-microcode_ux.c')
-rw-r--r-- | lang/mit-scheme/files/patch-microcode_ux.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lang/mit-scheme/files/patch-microcode_ux.c b/lang/mit-scheme/files/patch-microcode_ux.c new file mode 100644 index 000000000000..2118ef69fa9c --- /dev/null +++ b/lang/mit-scheme/files/patch-microcode_ux.c @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- microcode/ux.c.orig ++++ microcode/ux.c +@@ -785,9 +785,7 @@ + unsigned long min_result, + unsigned long max_result) + { +- void * addr = (mmap_heap_malloc_try (min_result, request, true)); +- if (addr == 0) +- addr = (mmap_heap_malloc_try (min_result, request, false)); ++ void * addr = (mmap_heap_malloc_try (min_result, request, false)); + return addr; + } + |