blob: 6d6545b3952e0f6e200f4a3fc713150115a4fbaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$FreeBSD$
--- racket/include/scheme.h.orig
+++ racket/include/scheme.h
@@ -63,10 +63,12 @@
# define MZ_USE_SINGLE_FLOATS
#endif
+#if (__FreeBSD_version >= 1000100)
/* gcc defines __SSE_MATH__ when SSE floating point is enabled: */
#ifdef __SSE_MATH__
# define C_COMPILER_USES_SSE 1
#endif
+#endif
#ifdef C_COMPILER_USES_SSE
# if defined(MZ_TRY_EXTFLONUMS) && !defined(MZ_NO_EXTFLONUMS)
|