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
|
From 64c82f85ef1e2bf8855faff8c22a131a3552149b Mon Sep 17 00:00:00 2001
From: Andreas Beckmann <anbe@debian.org>
Date: Tue, 7 Jul 2020 20:41:41 +0200
Subject: [PATCH 06/11] detect-sse
---
core/osl/config.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/core/osl/config.h b/core/osl/config.h
index 53b1d9c0f..1c02dbe72 100644
--- a/core/osl/config.h
+++ b/core/osl/config.h
@@ -31,4 +31,10 @@
#define OSL_NO_SSE 1
#endif
+#ifndef __SSE__
+# ifndef OSL_NO_SSE
+# define OSL_NO_SSE 1
+# endif
+#endif
+
#endif /* _OSL_CONFIG_H */
--
2.33.0
|