File: use_packaged_simde

package info (click to toggle)
python-skbio 0.5.8-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,224 kB
  • sloc: python: 47,839; ansic: 672; makefile: 210; javascript: 50; sh: 19
file content (25 lines) | stat: -rw-r--r-- 710 bytes parent folder | download
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
Author: Michael R. Crusoe <crusoe@debian.org>
Description: Use libsimde-dev instead of the code copy
Forwarded: not-needed
--- python-skbio.orig/skbio/alignment/_lib/ssw.c
+++ python-skbio/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>
--- python-skbio.orig/skbio/alignment/_lib/ssw.h
+++ python-skbio/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;