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
|
Description: Fix FTBFS with GCC 15
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1096305
--- ampliconnoise-1.29.orig/Perseus/Perseus.h
+++ ampliconnoise-1.29/Perseus/Perseus.h
@@ -148,7 +148,7 @@ void broadcastData(t_Data *ptData);
double needlemanWunschN(const char* acA, const char* acB, int nLenA, int nLenB, int nM);
-void initLookUp();
+void initLookUp(t_Params *ptParams);
char* getChimera(int *pnCLength, t_Align* ptA, t_Align* ptB, int nSplit, int nLenI);
--- ampliconnoise-1.29.orig/PerseusD/PerseusD.h
+++ ampliconnoise-1.29/PerseusD/PerseusD.h
@@ -173,7 +173,7 @@ void broadcastData(t_Data *ptData);
double needlemanWunschN(const char* acA, const char* acB, int nLenA, int nLenB, int nM);
-void initLookUp();
+void initLookUp(t_Params *ptParams);
char* getChimera(int *pnCLength, t_Align* ptA, t_Align* ptB, int nSplit, int nLenI);
|