summaryrefslogtreecommitdiff
path: root/librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-01-05 16:21:31 -0500
committerB. Stack <bgstack15@gmail.com>2022-01-05 16:21:31 -0500
commit826a2e7f8c7786acb3b5d2217f19814f314289ab (patch)
tree9c1b67262b407684d8874fc9f525042c90d88207 /librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch
parentcheck gcc ver instead of fedora ver (diff)
downloadstackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.tar.gz
stackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.tar.bz2
stackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.zip
add initial lw d/ contents
Diffstat (limited to 'librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch')
-rw-r--r--librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch b/librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch
new file mode 100644
index 0000000..b58b9e2
--- /dev/null
+++ b/librewolf/debian/patches/porting/Use-NEON_FLAGS-instead-of-VPX_ASFLAGS-for-libaom-neo.patch
@@ -0,0 +1,21 @@
+From: Mike Hommey <mh@glandium.org>
+Date: Mon, 26 Nov 2018 09:59:56 +0900
+Subject: Use NEON_FLAGS instead of VPX_ASFLAGS for libaom neon code
+
+---
+ media/libaom/moz.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/media/libaom/moz.build b/media/libaom/moz.build
+index fd8c7f2..db3f9ca 100644
+--- a/media/libaom/moz.build
++++ b/media/libaom/moz.build
+@@ -55,7 +55,7 @@ elif CONFIG['CPU_ARCH'] == 'arm':
+
+ for f in SOURCES:
+ if f.endswith('neon.c'):
+- SOURCES[f].flags += CONFIG['VPX_ASFLAGS']
++ SOURCES[f].flags += CONFIG['NEON_FLAGS']
+
+ if CONFIG['OS_TARGET'] == 'Android':
+ # For cpu-features.h
bgstack15