Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Include definition for malloc & free
· 10a11e39
Michael R. Crusoe
authored
Dec 13, 2019
10a11e39
drop using from simde header
· 2ca3ab8c
Michael R. Crusoe
authored
Dec 14, 2019
2ca3ab8c
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
2ca3ab8c
libssw (1.1-7) UNRELEASED; urgency=medium
* debian/patches/malloc: Include definition for malloc & free
* debian/include/simde/x86/sse.h: drop "using"
-- Michael R. Crusoe <michael.crusoe@gmail.com> Fri, 13 Dec 2019 16:17:12 +0100
libssw (1.1-6) unstable; urgency=medium
* Release to unstable.
...
...
debian/include/simde/x86/sse.h
View file @
2ca3ab8c
...
...
@@ -68,14 +68,8 @@
# endif
# endif
#if !defined(__cplusplus)
# include <math.h>
# include <fenv.h>
#else
# include <cmath>
# include <cfenv>
using
std
::
isnan
;
#endif
#include
<math.h>
#include
<fenv.h>
HEDLEY_DIAGNOSTIC_PUSH
# if HEDLEY_HAS_WARNING("-Wfloat-equal")
...
...
debian/patches/malloc
0 → 100644
View file @
2ca3ab8c
From: Michael R. Crusoe <michael.crusoe@gmail.com>
Subject: Provide declarations for malloc & free
--- libssw.orig/src/sswjni.c
+++ libssw/src/sswjni.c
@@ -1,6 +1,7 @@
#include <jni.h>
#include <stdio.h>
#include "ssw.h"
+#include <stdlib.h>
jstring s_align_cigar_to_jstring(JNIEnv* env, s_align* align) {
jstring jstrBuf = NULL;
debian/patches/series
View file @
2ca3ab8c
...
...
@@ -2,3 +2,4 @@ build_all_libs.patch
hardening.patch
rename_tool.patch
simde.patch
malloc