File: use_packaged_simde

package info (click to toggle)
python-skbio 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,924 kB
  • sloc: python: 67,527; ansic: 672; makefile: 225
file content (36 lines) | stat: -rw-r--r-- 1,014 bytes parent folder | download | duplicates (2)
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
From: "Michael R. Crusoe" <crusoe@debian.org>
Date: Sun, 12 Feb 2023 11:04:32 +0100
Subject: Use libsimde-dev instead of the code copy

Forwarded: not-needed
---
 skbio/alignment/_lib/ssw.c | 2 +-
 skbio/alignment/_lib/ssw.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/skbio/alignment/_lib/ssw.c b/skbio/alignment/_lib/ssw.c
index e0a7816..cd4bf93 100644
--- a/skbio/alignment/_lib/ssw.c
+++ b/skbio/alignment/_lib/ssw.c
@@ -36,7 +36,7 @@
  */
 
 #define SIMDE_ENABLE_NATIVE_ALIASES
-#include "simde-sse2.h"
+#include <simde/x86/sse2.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <stdio.h>
diff --git a/skbio/alignment/_lib/ssw.h b/skbio/alignment/_lib/ssw.h
index 3ace71f..2d8e252 100644
--- a/skbio/alignment/_lib/ssw.h
+++ b/skbio/alignment/_lib/ssw.h
@@ -15,7 +15,7 @@
 #include <stdint.h>
 #include <string.h>
 #define SIMDE_ENABLE_NATIVE_ALIASES
-#include "simde-sse2.h"
+#include <simde/x86/sse2.h>
 
 /*! @typedef    structure of the query profile  */
 struct _profile;