aboutsummaryrefslogtreecommitdiffstats
path: root/community/xpra/avoid-x86-only-compile-flags.patch
blob: 0f6c5871aadfb95f7a0a84b70e140e005ec0b8aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/setup.py b/setup.py
index 57c2d63..c896c62 100755
--- a/setup.py
+++ b/setup.py
@@ -1737,9 +1737,9 @@ membuffers_c = [memalign_c, buffers_c, xxhash_c]
 if modules_ENABLED:
     add_packages("xpra.buffers")
     buffers_pkgconfig = pkgconfig(optimize=3)
-    if BITS==32:
-        #this may well be sub-optimal:
-        add_to_keywords(buffers_pkgconfig, "extra_compile_args", "-mfpmath=387")
+#    if BITS==32:
+#        #this may well be sub-optimal:
+#        add_to_keywords(buffers_pkgconfig, "extra_compile_args", "-mfpmath=387")
     if cython_ENABLED:
         cython_add(Extension("xpra.buffers.membuf",
                     ["xpra/buffers/membuf.pyx"]+membuffers_c, **buffers_pkgconfig))