summaryrefslogtreecommitdiff
path: root/extra/openal/fpu.patch
blob: 9579e30ab072b6298cfab82f631ba3b77578bc77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 openal-soft (1:1.14-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- openal-soft-1.14.orig/OpenAL32/Include/alu.h
+++ openal-soft-1.14/OpenAL32/Include/alu.h
@@ -224,6 +224,29 @@ static __inline ALfloat cubic(ALfloat va
     return a0*mu*mu2 + a1*mu2 + a2*mu + a3;
 }
 
+#if defined(_FPU_GETCW) && defined(_FPU_SETCW)
+ #ifndef _FPU_EXTENDED
+  #define _FPU_EXTENDED	0
+ #endif
+ #ifndef _FPU_DOUBLE
+  #define _FPU_DOUBLE	0
+ #endif
+ #ifndef _FPU_SINGLE
+  #define _FPU_SINGLE	0
+ #endif
+ #ifndef _FPU_RC_NEAREST
+  #define _FPU_RC_NEAREST	0
+ #endif
+ #ifndef _FPU_RC_DOWN
+  #define _FPU_RC_DOWN	0
+ #endif
+ #ifndef _FPU_RC_UP
+  #define _FPU_RC_UP	0
+ #endif
+ #ifndef _FPU_RC_ZERO
+  #define _FPU_RC_ZERO	0
+ #endif
+#endif
 
 static __inline int SetMixerFPUMode(void)
 {