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;
|