mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
package/glorytun: fix build without cpuid.h
Fixes: - http://autobuild.buildroot.org/results/2617bf58146caeaf3c1b17171dbce09217fb7a2d Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
5d6687512a
commit
b5f1deefb1
29
package/glorytun/0001-Check-for-cpuid.h-too.patch
Normal file
29
package/glorytun/0001-Check-for-cpuid.h-too.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
From 00fdf8a605f019570113e0f6af64c840767846c3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= <adrien@gallouet.fr>
|
||||||
|
Date: Tue, 8 Oct 2019 08:50:09 +0000
|
||||||
|
Subject: [PATCH] Check for cpuid.h too
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
|
||||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||||
|
[Retrieved from:
|
||||||
|
https://github.com/angt/aegis256/commit/00fdf8a605f019570113e0f6af64c840767846c3]
|
||||||
|
---
|
||||||
|
mud/aegis256/aegis256.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/mud/aegis256/aegis256.c b/mud/aegis256/aegis256.c
|
||||||
|
index 97cf171..5e3c237 100644
|
||||||
|
--- a/mud/aegis256/aegis256.c
|
||||||
|
+++ b/mud/aegis256/aegis256.c
|
||||||
|
@@ -7,7 +7,7 @@
|
||||||
|
#define __has_include(X) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
-#if __has_include("x86intrin.h")
|
||||||
|
+#if (__has_include("x86intrin.h") && __has_include("cpuid.h"))
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include <x86intrin.h>
|
Loading…
x
Reference in New Issue
Block a user