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