summaryrefslogtreecommitdiff
path: root/net-wireless/dump1090/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-08-21 23:14:26 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-08-21 23:14:26 +0100
commit7c59acba5699c9c58090a7a738669669a7307023 (patch)
treed51d27d020895a6b7a3298d9d1b9846c1fcb59a0 /net-wireless/dump1090/files
parente2db47eaae00ec33f8971db44b68645c5d3b9590 (diff)
gentoo resync : 21.08.2021
Diffstat (limited to 'net-wireless/dump1090/files')
-rw-r--r--net-wireless/dump1090/files/dump1090-5.0-32bit-fix.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/net-wireless/dump1090/files/dump1090-5.0-32bit-fix.patch b/net-wireless/dump1090/files/dump1090-5.0-32bit-fix.patch
new file mode 100644
index 000000000000..8425f3d9da06
--- /dev/null
+++ b/net-wireless/dump1090/files/dump1090-5.0-32bit-fix.patch
@@ -0,0 +1,21 @@
+From c97b83d3eded3e2232a9f938fee52771ebe09c9c Mon Sep 17 00:00:00 2001
+From: Oliver Jowett <oliver.jowett@flightaware.com>
+Date: Sat, 13 Mar 2021 20:24:01 +0800
+Subject: [PATCH] Maybe fix alignment warnings in arm neon code with recent gcc
+
+---
+ dsp-types.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/dsp-types.h b/dsp-types.h
+index a3ef98dab..962b608be 100644
+--- a/dsp-types.h
++++ b/dsp-types.h
+@@ -16,6 +16,6 @@ typedef union {
+ typedef struct {
+ int16_t I;
+ int16_t Q;
+-} __attribute__((__packed__)) sc16_t;
++} __attribute__((__packed__, __aligned__(2))) sc16_t;
+
+ #endif