aboutsummaryrefslogtreecommitdiff
path: root/testing/openjfx11/disable-sse2.patch
blob: db99780c60e95e834b3da3f40b2292be557bd244 (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
58
59
60
Description: Enable SSE2 on i386 and amd64 CPUs only
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
Taken from: https://sources.debian.org/patches/openjfx/11.0.2+1-1/08-disable-sse2.patch
--- old/modules/javafx.media/src/main/native/gstreamer/projects/linux/avplugin/Makefile
+++ new/modules/javafx.media/src/main/native/gstreamer/projects/linux/avplugin/Makefile
@@ -23,13 +23,16 @@
          -Wformat-security       \
          -fstack-protector       \
          -Werror=implicit-function-declaration \
-         -msse2                  \
          -fbuiltin               \
          -DHAVE_STDINT_H         \
          -DLINUX                 \
          -DGST_DISABLE_LOADSAVE  \
          -DGSTREAMER_LITE \
          -ffunction-sections -fdata-sections
+
+ifneq (,$(filter $(CARCH), x86 x86_64))
+    CFLAGS += -msse2
+endif
 
 ifeq ($(BUILD_TYPE), Release)
     CFLAGS += -Os
--- old/modules/javafx.media/src/main/native/gstreamer/projects/linux/fxplugins/Makefile
+++ new/modules/javafx.media/src/main/native/gstreamer/projects/linux/fxplugins/Makefile
@@ -20,7 +20,6 @@
          -Wformat-security       \
          -fstack-protector       \
          -Werror=implicit-function-declaration \
-         -msse2                  \
          -fbuiltin               \
          -DHAVE_STDINT_H         \
          -DLINUX                 \
@@ -31,6 +30,10 @@
          -DGST_DISABLE_GST_DEBUG \
          -DGSTREAMER_LITE \
          -ffunction-sections -fdata-sections
+
+ifneq (,$(filter $(CARCH), x86 x86_64))
+    CFLAGS += -msse2
+endif
 
 ifeq ($(BUILD_TYPE), Release)
     CFLAGS += -Os
--- old/modules/javafx.media/src/main/native/jfxmedia/projects/linux/Makefile
+++ new/modules/javafx.media/src/main/native/jfxmedia/projects/linux/Makefile
@@ -42,8 +42,11 @@
                   -Wformat-security \
                   -fstack-protector \
                   -Werror=implicit-function-declaration \
-		  -msse2 \
 	          -DGSTREAMER_LITE
+
+ifneq (,$(filter $(CARCH), x86 x86_64))
+	CFLAGS += -msse2
+endif
 
 	PACKAGES_INCLUDES := $(shell pkg-config --cflags glib-2.0)
 	PACKAGES_LIBS := $(shell pkg-config --libs glib-2.0 gobject-2.0 gmodule-2.0 gthread-2.0)